I Have list of list, I want to loop through the list and for every iteration i want to access the ith
subelements of the list.
eg:
a = [[1, 3, 4], [2, 4, 4], [3, 7, 5]]
i want to do something like this
for i in range(len(a)):
x=a[i]
for 1st iteration I want to access the 0
th element from all the sub list (i.e) 1,2,3
for 2nd iteration I want to access the 1
st element from all the sub list (i.e) 3,4,7
I tried several approaches but failed, is there any trick to do that