How to flatten a list of tuples into a pythonic li

2019-01-24 18:26发布

问题:

Given the following list of tuples:

INPUT = [(1,2),(1,),(1,2,3)]

How would I flatten it into a list?

OUTPUT ==> [1,2,1,1,2,3]

Is there a one-liner to do the above?

Similar: Flatten list of Tuples in Python

回答1:

You could use a list comprehension:

>>> INPUT = [(1,2),(1,),(1,2,3)]
>>> [y for x in INPUT for y in x]
[1, 2, 1, 1, 2, 3]
>>>

itertools.chain.from_iterable is also used a lot in cases like this:

>>> from itertools import chain
>>> INPUT = [(1,2),(1,),(1,2,3)]
>>> list(chain.from_iterable(INPUT))
[1, 2, 1, 1, 2, 3]
>>>

That's not exactly a one-liner though.



回答2:

>>> INPUT = [(1,2),(1,),(1,2,3)]
>>> import itertools
>>> list(itertools.chain.from_iterable(INPUT))
[1, 2, 1, 1, 2, 3]


回答3:

>>> INPUT = [(1,2),(1,),(1,2,3)]  
>>> import operator as op
>>> reduce(op.add, map(list, INPUT))
[1, 2, 1, 1, 2, 3]


回答4:

you can use sum which adds up all of the elements if it's a list of list (singly-nested).

sum([(1,2),(1,),(1,2,3)], ())

or convert to list:

list(sum([(1,2),(1,),(1,2,3)], ()))

Adding up lists works in python.

Note: This is inefficient and some say unreadable.



回答5:

Not in one line but in two:

>>> out = []
>>> map(out.extend, INPUT)
... [None, None, None]
>>> print out
... [1, 2, 1, 1, 2, 3]

Declare a list object and use extend.