Consider the following list:
L = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
How can I achieve this printing pattern?
1 4 7
2 5 8
3 6 9
More specifically, how can I do it in general for any number of elements in L
while assuming that all the nested lists in L
have the same length?