how to find a position of a element in a given set of elements in python code example
Example: how to find the position in a list python
lst = [4, 6, 5]
lst.index(6) # will return 1
lst = [4, 6, 5]
lst.index(6) # will return 1