how to get the elements of an index in a list in python 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: get index of all element in list python
indices = [i for i, x in enumerate(my_list) if x == "whatever"]