Answers for "how to unlist a nested list in python"

2

python how to unnest a nested list

# Basic syntax:
unnested_list = list(chain(*nested_list))
# Where chain comes from the itertools package and is useful for 
#	unnesting any iterables

# Example usage:
from itertools import chain
nested_list = [[1,2], [3,4]]
my_unnested_list = list(chain(*nested_list))
print(my_unnested_list)
--> [1, 2, 3, 4]
Posted by: Guest on October-04-2020
4

python unlist flatten nested lists

def flatten(x):
    if isinstance(x, list):
        return [a for i in x for a in flatten(i)]
    else:
        return [x]
Posted by: Guest on May-17-2021

Code answers related to "how to unlist a nested list in python"

Python Answers by Framework

Browse Popular Code Answers by Language