Answers for "concatenate a list of lists python"

4

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
1

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

Code answers related to "concatenate a list of lists python"

Python Answers by Framework

Browse Popular Code Answers by Language