Skip to content

Instantly share code, notes, and snippets.

@studiotomi
Created June 19, 2015 15:36
Show Gist options
  • Save studiotomi/d25e7dbe42a6019fdc08 to your computer and use it in GitHub Desktop.
Save studiotomi/d25e7dbe42a6019fdc08 to your computer and use it in GitHub Desktop.
Work on Chunks of an array
def chunks(l, n):
""" Yield successive n-sized chunks from l.
http://stackoverflow.com/a/312464/1572077
"""
for i in xrange(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