Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active August 25, 2016 10:55
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 kurozumi/975655ab36b882e80a8ef4878677deab to your computer and use it in GitHub Desktop.
Save kurozumi/975655ab36b882e80a8ef4878677deab to your computer and use it in GitHub Desktop.
【Python】PHPのarray_chunkをPythonで実装
def chunk(l, size):
for i in range(0, len(l), size):
yield l[i:i+size]
for l in chunk(range(0,100), 10):
print(list(l))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment