Answers for "python unpack list of lists"

9

python flat list from list of list

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)
Posted by: Guest on July-03-2020
0

unpack list python

l = [0, 1, 2]

a, b, c = l

print(a)
print(b)
print(c)
# 0
# 1
# 2
Posted by: Guest on June-07-2021
-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

Code answers related to "python unpack list of lists"

Python Answers by Framework

Browse Popular Code Answers by Language