Answers for "how to make list of lists into 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
-1

two lists into one list of tules

>>> list_a = [1, 2, 3, 4]
>>> list_b = [5, 6, 7, 8]
>>> list(zip(list_a, list_b))
[(1, 5), (2, 6), (3, 7), (4, 8)]
Posted by: Guest on April-17-2021

Code answers related to "how to make list of lists into one list python"

Python Answers by Framework

Browse Popular Code Answers by Language