Answers for "split list into even chunks python"

8

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))
Posted by: Guest on June-17-2020

Code answers related to "split list into even chunks python"

Python Answers by Framework

Browse Popular Code Answers by Language