Skip to content

Instantly share code, notes, and snippets.

@upbit
Created January 13, 2020 11:34
Embed
What would you like to do?
def chunks(l, n):
"""Yield successive n-sized chunks from l."""
for i in range(0, len(l), n):
yield l[i:i + n]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment