Answers for "concat all list in lists of list"

2

combine list of lists python

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

result = sum(x, [])
# This combines the lists within the list into a single list
Posted by: Guest on April-11-2021
0

Concatenate lists

>>> a = [1, 2, 3]
>>> b = [4, 5, 6]
>>> c = a + b
>>> print(c)
[1, 2, 3, 4, 5, 6]
Posted by: Guest on October-21-2021

Code answers related to "concat all list in lists of list"

Python Answers by Framework

Browse Popular Code Answers by Language