I'm just starting with Python, and I can't figure out how to group tuples.
For instance, I have tuple1=("A", "B", "C")
and tuple2=("1","2","3")
. I want to combine these into a list, grouped by the first tuple. I want it to appear stacked, as in A1 A2 A3 on one line, and B1 B2 B3 on the next line.
I can make them print concatenated, but I can't figure out how to stack them nicely.