Answers for "how to flatten a list python"

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

python flatten a list of lists

from collections.abc import Iterable

def flatten(l):
    for el in l:
        if isinstance(el, Iterable) and not isinstance(el, (str, bytes)):
            yield from flatten(el)
        else:
            yield el
Posted by: Guest on August-19-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
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

Python Answers by Framework

Browse Popular Code Answers by Language