how to find position in array python code example
Example: position in array python
a_list = [1, 2, 3]
position_of_three = a_list.index(3)
print(position_of_three)
a_list = [1, 2, 3]
position_of_three = a_list.index(3)
print(position_of_three)