If I have a list like this:
>>> data = [(1,2),(40,2),(9,80)]
how can I extract the the two lists [1,40,9] and [2,2,80] ? Of course I can iterate and extract the numbers myself but I guess there is a better way ?
|
1
|
|||||
|
|
|
List comprehensions save the day:
|
||
|
|
|
|
There is also
|
||
|
|
|
|
The unzip operation is:
Edit: You can decompose the resulting list on assignment:
And if you really need lists as results:
To better understand why this works:
is equivalent to
The two tuples in the result list are built from the first elements of zip()'s arguments and from the second elements of zip()'s arguments. |
|||
|
|