position of a list python code example
Example 1: how to find the position in a list python
lst = [4, 6, 5]
lst.index(6) # will return 1
Example 2: position in array python
a_list = [1, 2, 3]
position_of_three = a_list.index(3)
print(position_of_three)