Answers for "multiple list to one 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

list of lists to single list python

flat_list = [item for sublist in t for item in sublist]
Posted by: Guest on August-03-2021

Code answers related to "multiple list to one list python"

Python Answers by Framework

Browse Popular Code Answers by Language