I have come across a small problem. Say I have two lists:
list_A = ['0','1','2']
list_B = ['2','0','1']
I then have a list of lists:
matrix = [
['56','23','4'],
['45','5','67'],
['1','52','22']
]
I then need to iterate through list_A and list_B and effectively use them as co-ordinates. For example I take the firs number from list A and B which would be '0' and '2', I then use them as co-ordinates: print matrix[0][2]
I then need to do the same for the 2nd number in list A and B and the 3rd number in list A and B and so forth for however long List A and B how would be. How do this in a loop?