Answers for "python list of lists into 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
0

convert list of list to list python

merged = list(itertools.chain.from_iterable(list2d))
Posted by: Guest on April-15-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language