I want to iterate through a list of lists but not in the typical way such that I go through each element in the list of lists then move to the next list.
How does the logic work if I wanted to print the elements in the order 1, 4, 2, 5, 3, 6, which is the list of lists element then the lists and repeat, instead of 1, 2, 3, 4, 5, 6?
ls = [[1, 2, 3], [4, 5, 6]]