select index from list python code example
Example 1: get index from element in 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: choose index from list python
ahahfunny = ['ahah ', 'copy-', 'paste ', 'stack overflow', ' go ', 'brr']
print(ahahfunny[0])
n = 0
for i in range(len(ahahfunny)):
print(ahahfunny[n] + '\n')
n += 1
print(ahahfunny[0], ahahfunny[3], ahahfunny[4], ahahfunny[5])
print("\nbrrr\tYou're welcome\tbrrr.")