How To Flatten Nested Lists in Python

How To Flatten Nested Lists in Python

Channel:
Subscribers:
53,100
Published on ● Video Link: https://www.youtube.com/watch?v=p9Cp5w2HV7g



Category:
Guide
Duration: 5:20
4,467 views
95


↓ Code Available Below! ↓

This video shows how to flatten nested lists in Python.

If you find this video useful, like, share and subscribe to support the channel!
► Subscribe: https://www.youtube.com/c/DataDaft?sub_confirmation=1


Code used in this Python Code Clip:

nested = [[1,2,3],[4,5,6],[7,8,9]]

# Depth 2 flatten with list comprehension
flattened = [num for sublist in nested for num in sublist]

print(flattened)

# Depth 2 flatten with for loops
flattened2 = []

for sublist in nested:
for num in sublist:
flattened2.append(num)

print(flattened2)

# Flatten with numpy
import numpy as np

np.array(nested).flatten()

# Nested lists greater than depth 2
nested3 = [nested, nested]

# Flatten depth 3 nested with numpy
import numpy as np

np.array(nested3).flatten()

# Add extra sublists as extra loops:
[num for sub1 in nested3 for sub2 in sub1 for num in sub2]

# Flatten lists with unequal levels of nesting

unequal_nest = [1 , [2, 3], [[4,5],[6, 7]]]

def flatten_list(x):
for item in x:
if type(item) in [list]:
for num in flatten_list(item):
yield(num)
else:
yield(item)

list(flatten_list(unequal_nest))



* Note: YouTube does not allow greater than or less than symbols in the text description, so the code above will not be exactly the same as the code shown in the video! I will use Unicode large < and > symbols in place of the standard sized ones. .


⭐ Kite is a free AI-powered coding assistant that integrates with popular editors and IDEs to give you smart code completions and docs while you’re typing. It is a cool application of machine learning that can also help you code faster! Check it out here: https://www.kite.com/get-kite/?utm_medium=referral&utm_source=youtube&utm_campaign=datadaft&utm_content=description-only







Tags:
flatten lists python
python flatten lists
numpy flatten
numpy flatten()
unnest lists
unnest lists python
python nested lists
nested lists
make a flattened list
flatten nested lists in python
get elements out of nested list in python
python lists
remove list nesting
remove nesting
python basics
getting rid of nesting
uneven list nesting
remove uneven list nesting
unequal nested list
numpy .flatten()
.flatten()
flatten numpy array