3 lines
64 B
Python
3 lines
64 B
Python
|
#create a tuple
|
||
|
l = [(1,2), (3,4), (8,9)]
|
||
|
print(list(zip(*l)))
|