return the position of a value in 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: python get index and value from list
test = [ 'test 1', 'test 2', 'test 3' ]
for index, value in enumerate( test ):
print( index, value )