Answers for "h ow to flatten list of lists in pythons"

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
13

how to flatten list of lists in python

# 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)
Posted by: Guest on August-12-2021

Code answers related to "h ow to flatten list of lists in pythons"

Python Answers by Framework

Browse Popular Code Answers by Language