Answers for "python split list in chunks of size n"

0

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))
Posted by: Guest on May-29-2021
-1

split long list into chunks of 100

def chunks(lst, n):
    """Yield successive n-sized chunks from lst."""
    for i in range(0, len(lst), n):
        yield lst[i:i + n]
Posted by: Guest on May-12-2021

Code answers related to "python split list in chunks of size n"

Python Answers by Framework

Browse Popular Code Answers by Language