SyntaxFix
Write A Post
Hire A Developer
Questions
zip will transpose the list, after that you can concatenate the outputs.
zip
In [3]: zip(*[ ['0,0', '0,1'], ['1,0', '1,1'], ['2,0', '2,1'] ]) Out[3]: [('0,0', '1,0', '2,0'), ('0,1', '1,1', '2,1')]