Skip to content

Instantly share code, notes, and snippets.

@palawer
Created April 22, 2020 12:14
Show Gist options
  • Save palawer/d5078e8b53acfea46c6fe0cfb3220403 to your computer and use it in GitHub Desktop.
Save palawer/d5078e8b53acfea46c6fe0cfb3220403 to your computer and use it in GitHub Desktop.
def chunks(l, n):
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