I have a list consisting of tuples like the following:
m = [('a', 'b', 'c', 'd'), (1, 2, 3, 4), ('alpha', 'beta', 'gamma', 'eta')]
['c', 3, 'gamma']
Variable 'm' contains list of tuples, there are 3 tuples considered as 3 items in list.
Variable 'n' takes each element (tuple) in the list and prints its value according to its index number.
m = [('a', 'b', 'c', 'd'), (1, 2, 3, 4), ('alpha', 'beta', 'gamma', 'eta')]
for n in m:
print (n[2])