Use zip
, then unpack:
nums_and_words = [(1, 'one'), (2, 'two'), (3, 'three')]
nums, words = zip(*nums_and_words)
Actually, this "unpacks" twice: First, when you pass the list of lists to zip
with *
, then when you distribute the result to the two variables.
You can think of zip(*list_of_lists)
as 'transposing' the argument:
zip(*[(1, 'one'), (2, 'two'), (3, 'three')])
== zip( (1, 'one'), (2, 'two'), (3, 'three') )
== [(1, 2, 3), ('one', 'two', 'three')]
Note that this will give you tuples; if you really need lists, you'd have to map
the result:
nums, words = map(list, zip(*nums_and_words))
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…