Let's say I have a list like this:
rows=[['a1','a3','a5','a7'], ['a2','a4','a6','a8']]
And I want to create new list from this, so it would look like this:
['a','1','a','2','a','3'....] and so on until 'a8' in this order, but I don't want to sort the list in any way.
My point is I want to append the values in such a way that it appends first item from first list in rows, then it appends the first item from the second list, and then goes back to the second item from the first list, and so on.
How can I do that?