Skip to content

Instantly share code, notes, and snippets.

@fxpires
Forked from amitittyerah/array_chunk.py
Last active June 8, 2018 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fxpires/e73665c367e21d5316b009b129c48311 to your computer and use it in GitHub Desktop.
Save fxpires/e73665c367e21d5316b009b129c48311 to your computer and use it in GitHub Desktop.
array_chunk($arr, $size) version of Python
def array_chunk(arr, size):
chunks=[arr[x:x+size] for x in xrange(0, len(arr), size)]
return chunks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment