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

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

list of list to single list

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

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

Python Answers by Framework

Browse Popular Code Answers by Language