how to check the index of a value in a list code example
Example 1: python get index and value from list
test = [ 'test 1', 'test 2', 'test 3' ]
for index, value in enumerate( test ):
print( index, value )
Example 2: python list find index of item
>>> ["foo", "bar", "baz"].index("bar")
1