“spłaszcz listę list Python” 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

spłaszcz listę list Python

list_of_lists = [[180.0], [173.8], [164.2], [156.5], [147.2], [138.2]] 
flattened = [val for sublist in list_of_lists for val in sublist
Famous Frog

Odpowiedzi podobne do “spłaszcz listę list Python”

Pytania podobne do “spłaszcz listę list Python”

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

Przeglądaj inne języki kodu