python list find index of item code example
Example 1: get index of list python
list.index(element)
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 )
Example 3: python list find index of item
>>> ["foo", "bar", "baz"].index("bar")
1