Answers for "python concatenate lists in list"

5

combining list of list to single list python

import itertools
a = [['a','b'], ['c']]
print(list(itertools.chain.from_iterable(a)))
Posted by: Guest on April-20-2021
2

python concatenate list of lists

x = [["a","b"], ["c"]]

result = sum(x, [])
Posted by: Guest on July-04-2020
0

how to concatenate all list inside list

>>> x = [["a","b"], ["c"]]
>>> [inner
...     for outer in x
...         for inner in outer]
['a', 'b', 'c']
Posted by: Guest on October-06-2021

Code answers related to "python concatenate lists in list"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language