Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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))
 
PREVIOUS NEXT
Tagged: #python #split #range #equally
ADD COMMENT
Topic
Name
2+6 =