I have a list of arbitrary length, and I need to split it up into equal size chunks and operate on it. There are some obvious ways to do this, like keeping a counter and two lists, and when the second list fills up, add it to the first list and empty the second list for the next round of data, but this is potentially extremely expensive.

I was wondering if anyone had a good solution to this for lists of any length, e.g. using generators.

This should work:

l = range(1, 1000)
print chunks(l, 10) -> [ [ 1..10 ], [ 11..20 ], .., [ 991..999 ] ]

I was looking for something useful in itertools but I couldn't find anything obviously useful. Might've missed it, though.

Related question: What is the most “pythonic” way to iterate over a list in chunks?

link|improve this question
I've added a link to related question. – J.F. Sebastian Jan 14 '09 at 10:32
favorited so I can look back one day and see if I can even understand the question! :P – Cawas Jul 1 '11 at 20:26
An optimized solution (more memory friendly) here: stackoverflow.com/questions/7133179/python-yield-and-delete – Radim Aug 21 '11 at 11:52
feedback

15 Answers

up vote 140 down vote accepted

Here's a generator that yields the chunks you want:

def chunks(l, n):
    """ Yield successive n-sized chunks from l.
    """
    for i in xrange(0, len(l), n):
        yield l[i:i+n]

import pprint
pprint.pprint(list(chunks(range(75), 10)))

[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
 [10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
 [20, 21, 22, 23, 24, 25, 26, 27, 28, 29],
 [30, 31, 32, 33, 34, 35, 36, 37, 38, 39],
 [40, 41, 42, 43, 44, 45, 46, 47, 48, 49],
 [50, 51, 52, 53, 54, 55, 56, 57, 58, 59],
 [60, 61, 62, 63, 64, 65, 66, 67, 68, 69],
 [70, 71, 72, 73, 74]]
link|improve this answer
5  
I would avoid using xrange if porting to Python 3.0 is considered possible, since xrange was removed from Python 3.0. – atzz Nov 23 '08 at 12:42
5  
What happens if we can't tell the length of the list? Try this on itertools.repeat([ 1, 2, 3 ]), e.g. – jespern Nov 23 '08 at 12:51
2  
That's an interesting extension to the question, but the original question clearly asked about operating on a list. – Ned Batchelder Nov 23 '08 at 13:53
52  
The 2to3 porting program changes all xrange calls to range since in Python 3.0 the functionality of range will be equivalent to that of xrange (i.e. it will return an iterator). So I would avoid using range and use xrange instead. – Tomi Kyöstilä Nov 23 '08 at 13:55
Excellent answer, and much nicer than what I had come up with. – I82Much Jul 22 '10 at 16:51
show 1 more comment
feedback

If you want something super simple:

def chunks(l, n):
    return [l[i:i+n] for i in range(0, len(l), n)]
link|improve this answer
1  
This works perfectly and is much simpler than the others answers. – Mathieu Pagé Nov 2 '10 at 16:47
18  
or return (l[i:i+n] for i in xrange(0, len(l), n)) for a generator. – Thomas Ahle Jan 17 '11 at 17:43
1  
Or (if we're doing different representations of this particular function) you could define a lambda function via: lambda x,y: [ x[i:i+y] for i in range(0,len(x),y)] . I love this list-comprehension method! – J-P Aug 20 '11 at 13:54
feedback

Directly from the Python documentation (recipes for itertools):

from itertools import izip, chain, repeat

def grouper(n, iterable, padvalue=None):
    "grouper(3, 'abcdefg', 'x') --> ('a','b','c'), ('d','e','f'), ('g','x','x')"
    return izip(*[chain(iterable, repeat(padvalue, n-1))]*n)

An alternate take, as suggested by J.F.Sebastian:

from itertools import izip_longest

def grouper(n, iterable, padvalue=None):
    "grouper(3, 'abcdefg', 'x') --> ('a','b','c'), ('d','e','f'), ('g','x','x')"
    return izip_longest(*[iter(iterable)]*n, fillvalue=padvalue)

I guess Guido's time machine works—worked—will work—will have worked—was working again.

link|improve this answer
3  
"Use the libraries, Luke!" :) – Kevin Little Nov 24 '08 at 4:18
15  
It is izip_longest(*[iter(iterable)]*n, fillvalue=fillvalue) nowadays. – J.F. Sebastian Nov 1 '09 at 18:07
1  
Thanks, J.F. Love your dolls! – tzot Nov 2 '09 at 0:49
@ninjagecko: list(grouper(3, range(10))) returns [(0, 1, 2), (3, 4, 5), (6, 7, 8), (9, None, None)], and all tuples are of length 3. Please elaborate on your comment because I can't understand it; what do you call a thing and how do you define it being a multiple of 3 in “expecting your thing to be a multiple of 3”? Thank you in advance. – tzot Apr 19 '11 at 13:09
If it is incorrect behavior for the user's code to have a tuple with None, they need to explicitly raise an error if len('0123456789')%3 != 0. This is not a bad thing, but a thing which could be documented. Oh wait my apologies... it is documented implicitly in by the padvalue=None argument. (Also by '3' I meant 'n') Nice code. – ninjagecko Apr 19 '11 at 15:51
show 4 more comments
feedback

Here is a generator that work on arbitrary iterables:

def split_seq(iterable, size):
  it = iter(iterable)
  item = list(itertools.islice(it, size))
  while item:
    yield item
    item = list(itertools.islice(it, size))

Example:

>>> import pprint
>>> pprint.pprint(list(split_seq(xrange(75), 10)))
[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
 [10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
 [20, 21, 22, 23, 24, 25, 26, 27, 28, 29],
 [30, 31, 32, 33, 34, 35, 36, 37, 38, 39],
 [40, 41, 42, 43, 44, 45, 46, 47, 48, 49],
 [50, 51, 52, 53, 54, 55, 56, 57, 58, 59],
 [60, 61, 62, 63, 64, 65, 66, 67, 68, 69],
 [70, 71, 72, 73, 74]]
link|improve this answer
I nearly wrote this, but knew there must be something with more elegance - the example tzot posts from the docs is definitely elegant. – Danny Staple Apr 17 at 10:18
feedback
def chunk(input, size):
        return map(None, *([iter(input)] * size))
link|improve this answer
this is the most beautiful of them all, but does not work in python3 – ninjagecko Apr 19 '11 at 5:08
map(None, iter) equals izip_longest(iter). – Thomas Ahle Jan 29 at 15:18
feedback

heh, one line version

In [48]: chunk = lambda ulist, step:  map(lambda i: ulist[i:i+step],  xrange(0, len(ulist), step))

In [49]: chunk(range(1,100), 10)
Out[49]: 
[[1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
 [11, 12, 13, 14, 15, 16, 17, 18, 19, 20],
 [21, 22, 23, 24, 25, 26, 27, 28, 29, 30],
 [31, 32, 33, 34, 35, 36, 37, 38, 39, 40],
 [41, 42, 43, 44, 45, 46, 47, 48, 49, 50],
 [51, 52, 53, 54, 55, 56, 57, 58, 59, 60],
 [61, 62, 63, 64, 65, 66, 67, 68, 69, 70],
 [71, 72, 73, 74, 75, 76, 77, 78, 79, 80],
 [81, 82, 83, 84, 85, 86, 87, 88, 89, 90],
 [91, 92, 93, 94, 95, 96, 97, 98, 99]]
link|improve this answer
13  
Please, use "def chunk" instead of "chunk = lambda". It works the same. One line. Same features. MUCH easier to the n00bz to read and understand. – S.Lott Nov 23 '08 at 13:45
@S.Lott: not if the n00bz come from scheme :P this isn't a real problem. there's even a keyword to google! what other features show we avoid for the sake of the n00bz? i guess yield isn't imperative/c-like enough to be n00b friendly either then. – Janus Troelsen May 11 at 21:10
feedback

Simple yet elegant

l = range(1, 1000)
print [l[x:x+10] for x in xrange(1, len(l), 10)]

or if you prefer:

chunks = lambda l, n: [l[x: x+n] for x in xrange(0, len(l), n)]
chunks(l, 10)
link|improve this answer
feedback

If you know list size:

def SplitList( list, chunk_size ) :
    return [list[offs:offs+chunk_size] for offs in range(0, len(list), chunk_size)]

If you don't (an iterator):

def IterChunks( sequence, chunk_size ) :
    res = []
    for item in sequence :
        res.append(item)
        if len(res) >= chunk_size :
            yield res
            res = []
    if res : yield res  # yield the last, incomplete, portion

In the latter case, it can be rephrased in a more beautiful way if you can be sure that the sequence always contains a whole number of chunks of given size (i.e. there is no incomplete last chunk).

link|improve this answer
feedback
def split_seq(seq, num_pieces):
    start = 0
    for i in xrange(num_pieces):
        stop = start + len(seq[i::num_pieces])
        yield seq[start:stop]
        start = stop

usage:

seq = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

for seq in split_seq(seq, 3):
    print seq
link|improve this answer
feedback
>>> f = lambda x, n, acc=[]: f(x[n:], n, acc+[(x[:n])]) if x else acc
>>> f("Hallo Welt", 3)
['Hal', 'lo ', 'Wel', 't']
>>>

If you are into brackets - I picked up a book on Erlang :)

link|improve this answer
This is the best. – sza Mar 24 '11 at 16:20
4  
This is by far the least readable, and would never pass a code review (“go back and re-write it so it's clear”). Clever code is hard-to-maintain code; meaningful names and simple statements are far better. – bignose Jun 5 '11 at 3:46
feedback

If you had a chunk size of 3 for example, you could do:

zip(*[iterable[i::3] for i in range(3)]) 

source: http://code.activestate.com/recipes/303060-group-a-list-into-sequential-n-tuples/

I would use this when my chunk size is fixed number I can type, e.g. '3', and would never change.

link|improve this answer
feedback
(explicit)

def chunk(lst):
    out = []
    for x in xrange(2, len(lst) + 1):
        if not len(lst) % x:
            factor = len(lst) / x
            break
    while lst:
        out.append([lst.pop(0) for x in xrange(factor)])
    return out
link|improve this answer
feedback

Without calling len() which is good for large lists:

def splitter(l, n):
    i = 0
    chunk = l[:n]
    while chunk:
        yield chunk
        i += n
        chunk = l[i:i+n]

And this is for iterables:

def isplitter(l, n):
    l = iter(l)
    chunk = list(islice(l, n))
    while chunk:
        yield chunk
        chunk = list(islice(l, n))

The functional flavour of the above:

def isplitter2(l, n):
    return takewhile(lambda x: x,
                     imap(lambda item: list(islice(item, n)),
                          repeat(iter(l))))
link|improve this answer
1  
There is no reason to avoid len() on large lists; it's a constant-time operation. – Thomas Wouters May 30 '11 at 10:03
feedback
def chunks(iterable,n):
    """assumes n is an integer>0
    """
    iterable=iter(iterable)
    while True:
        result=[]
        for i in range(n):
            try:
                a=next(iterable)
            except StopIteration:
                break
            else:
                result.append(a)
        if result:
            yield result
        else:
            break

g1=(i*i for i in range(10))
g2=chunks(g1,3)
print g2
'<generator object chunks at 0x0337B9B8>'
print list(g2)
'[[0, 1, 4], [9, 16, 25], [36, 49, 64], [81]]'
link|improve this answer
feedback

Consider using matplotlib.cbook pieces

for example:

import matplotlib.cbook as cbook
segments = cbook.pieces(np.arange(20), 3)
for s in segments:
     print s
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.