Answers for "python flatten a list of lists"

10

flatten list of lists python

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

flatten a list of lists python

flattened = [val for sublist in list_of_lists for val in sublist]
Posted by: Guest on May-04-2020
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

python flatten list

itertools.chain.from_iterable(factors)
Posted by: Guest on October-20-2020
0

python flatten a list of lists

from collections.abc import Iterable

def flatten(l):
    for el in l:
        if isinstance(el, Iterable) and not isinstance(el, (str, bytes)):
            yield from flatten(el)
        else:
            yield el
Posted by: Guest on August-19-2021

Code answers related to "python flatten a list of lists"

Python Answers by Framework

Browse Popular Code Answers by Language