Answers for "python list of tuples to two lists"

1

python list of tuples to two lists

>>> zip(*[(1, 2), (3, 4), (5, 6)])
[(1, 3, 5), (2, 4, 6)]
Posted by: Guest on June-27-2020

Code answers related to "python list of tuples to two lists"

Python Answers by Framework

Browse Popular Code Answers by Language