get position in array python code example
Example 1: how to find item in list python without indexnig
>>> ["foo", "bar", "baz"].index("bar")
1
Example 2: python index of item in list
list.index(element)
Example 3: position in array python
a_list = [1, 2, 3]
position_of_three = a_list.index(3)
print(position_of_three)