Skip to content

Instantly share code, notes, and snippets.

@lukmdo
Forked from ksamuel/chunk_iterable.py
Created October 24, 2011 14:45
Show Gist options
  • Save lukmdo/1309198 to your computer and use it in GitHub Desktop.
Save lukmdo/1309198 to your computer and use it in GitHub Desktop.
Function to iterate over an iterable chunk by chunk, choosing the number of item of each chunks and the type of the chunk
from itertools import chain, islice
def chunk(seq, chunksize):
""" Yields items from an iterator in iterable chunks."""
it = iter(seq)
while True:
yield chain([it.next()], islice(it, chunksize - 1))
if __name__ == '__main__':
lst = ['a', 'b', 'c', 'd', 'e']
for i in chunk(lst, 3):
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment