SyntaxFix
Write A Post
Hire A Developer
Questions
If you want a list of lists:
>>> [list(t) for t in zip(*l)] [[1, 3, 8], [2, 4, 9]]
If a list of tuples is OK:
>>> zip(*l) [(1, 3, 8), (2, 4, 9)]