Predictive Hacks

How to Split a List into Equal Elements in Python

Assume that we want to spit a list evenly, let’s say each part should consist of 5 elements. Let’s see how we can do it.

# create a list
x = [1,2,3,4,5,6,7,8,9,10,11]

# target elements 
n = 5

output = []
for i in range(0, len(x), n):
    output.append(x[i:i + n])
    
output
[[1, 2, 3, 4, 5], [6, 7, 8, 9, 10], [11]]

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

Subscribe To Our Newsletter

Get updates and learn from the best

More To Explore

Python

Image Captioning with HuggingFace

Image captioning with AI is a fascinating application of artificial intelligence (AI) that involves generating textual descriptions for images automatically.