print list item by index python 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 get element by index
# To return the index of the first occurence of element x in lst
ind = lst.index(x)