“Lista Python Flatten” Kod odpowiedzi

Python, jak spłaszczyć listę

flat_list = [item for sublist in l for item in sublist]
Talented Thrush

Lista Python Flatten

l = [[1, 2], [3, 4], [5, 6, 7]]
flat_list = [item for sublist in l for item in sublist]
# flat_list = [1, 2, 3, 4, 5, 6, 7]
Wandering Willet

Lista płaska Python z listy

flat_list = [item for sublist in l for item in sublist]

#which is equivalent to this 
flat_list = []
for sublist in l:
    for item in sublist:
        flat_list.append(item)
Batman

spłaszcz listę list Python

flattened = [val for sublist in list_of_lists for val in sublist]
Disturbed Dogfish

spłaszcz listę listy 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]
Adventurous Alligator

Lista Python Flatten

itertools.chain.from_iterable(factors)
Blushing Butterfly

Odpowiedzi podobne do “Lista Python Flatten”

Pytania podobne do “Lista Python Flatten”

Więcej pokrewnych odpowiedzi na “Lista Python Flatten” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu