“Jak spłaszczyć listę list w Pythonie” 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

Jak spłaszczyć listę list w Pythonie

# if your list is like this
l = [['Adela', 'Fleda', 'Owen', 'May', 'Mona', 'Gilbert', 'Ford'], 'Adela']

# then you 
a = []
for i in l:
    if type(i) != str:
        for x in i:
            a.append(x)
    else:
        a.append(i)
 
Darkstar

Odpowiedzi podobne do “Jak spłaszczyć listę list w Pythonie”

Pytania podobne do “Jak spłaszczyć listę list w Pythonie”

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

Przeglądaj inne języki kodu