split array in chunks python code example

Example 1: python split range equally

def chunks(lst, n):
    """Yield successive n-sized chunks from lst."""
    for i in range(0, len(lst), n):
        yield lst[i:i + n]
        
list(chunks(range(10, 75), 10))

Example 2: split list into lists of equal length python

[lst[i:i + n] for i in range(0, len(lst), n)]

Example 3: split array into chunks python

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

splitedSize = 3
a_splited = [a[x:x+splitedSize] for x in range(0, len(a), splitedSize)]

print(a_splited)
# [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

Example 4: split into list into even chunks

def chunks(l, n):
    n = max(1, n)
    return (l[i:i+n] for i in range(0, len(l), n))