Suppose I have a list of numbers divided into 3 lists:
numbers = [[0,1,2], [3,4,5], [6,7,8]]
And I want to iterate through each 3 lists and divide them into columns:
0 1 2
3 4 5
6 7 8
How would I go about doing this? So far, I can only print out 1 column:
for column in numbers[0:3]:
column1 = column[0]
print( column1 )