how to check to see if something is in first position of all lists in list python code example
Example: how to find item in list python without indexnig
>>> ["foo", "bar", "baz"].index("bar")
1
>>> ["foo", "bar", "baz"].index("bar")
1