Answers for "python list of lists to one list"

7

flatten a list of list python

# idiomatic python

# using itertools
import itertools

list_of_list = [[1, 2, 3], [4, 5], [6]]
chain = itertools.chain(*images)

flattened_list = list(chain)
# [1, 2, 3, 4, 5, 6]
Posted by: Guest on May-27-2020
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
2

python flatten list

itertools.chain.from_iterable(factors)
Posted by: Guest on October-20-2020
-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
-2

flatten lists python

flat_list = []
for sublist in l:
    for item in sublist:
        flat_list.append(item)
Posted by: Guest on February-02-2020

Code answers related to "python list of lists to one list"

Python Answers by Framework

Browse Popular Code Answers by Language