python find index for item in list code example
Example 1: python find index by value
>>> ["foo", "bar", "baz"].index("bar")
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 )
Example 3: Finding index of an item list
>>> ["foo", "bar", "baz"].index("bar")
1