Answers for "list . flat in python"

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
-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

Python Answers by Framework

Browse Popular Code Answers by Language