Answers for "turn list of lists into list"

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
9

flatten a list of lists python

flattened = [val for sublist in list_of_lists for val in sublist]
Posted by: Guest on May-04-2020
0

convert list of list to list python

merged = list(itertools.chain.from_iterable(list2d))
Posted by: Guest on April-15-2021

Code answers related to "turn list of lists into list"

Python Answers by Framework

Browse Popular Code Answers by Language