Answers for "combining list of list to single list 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

python merge list of lists

flat_list = [item for sublist in t for item in sublist]
Posted by: Guest on March-09-2021
0

merge lists in list python

import itertools
a = [['a','b'], ['c']]
print(list(itertools.chain.from_iterable(a)))
Posted by: Guest on June-03-2020

Code answers related to "combining list of list to single list python"

Python Answers by Framework

Browse Popular Code Answers by Language