Answers for "unpack list of lists python"

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

# unpack a list python:
list = ['red', 'blue', 'green']

# option 1
red, blue = colors

# option 2
*list
Posted by: Guest on August-25-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 "unpack list of lists python"

Python Answers by Framework

Browse Popular Code Answers by Language