Simple question, i have a list if lists
x = [['1','2','3'],['4','5','6'],['7','8','9']]
whats the simpliest way of indexing through each list in a single for loop? For example
for i in x:
print 1st_list_in_list
print 2nd_list_in_list
print 3rd_list_in_list
EDIT
Let me elaborate further, I wish to print each list how it is for example
for i in x:
print 1st_list_in_list
print 2nd_list_in_list
would return
1, 2, 3
4, 5, 6