how to get value from 0th index in 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: 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.")