Answers for "make list of lists one list 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
1

combine list of lists python

x = [["a","b"], ["c"]]

result = sum(x, [])
# This combines the lists within the list into a single list
Posted by: Guest on April-11-2021

Code answers related to "make list of lists one list python"

Python Answers by Framework

Browse Popular Code Answers by Language