I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it passed in as a list of four-element tuples. Currently, I'm iterating over it this way:

for i in xrange(0, len(ints), 4):
    # dummy op for example code
    foo += ints[i] * ints[i + 1] + ints[i + 2] * ints[i + 3]

It looks a lot like "C-think", though, which makes me suspect there's a more pythonic way of dealing with this situation. The list is discarded after iterating, so it needn't be preserved. Perhaps something like this would be better?

while ints:
    foo += ints[0] * ints[1] + ints[2] * ints[3]
    ints[0:4] = []

Still doesn't quite "feel" right, though. :-/

Related question: How do you split a list into evenly sized chunks in Python?

link|improve this question

1  
Your code does not work if the list size is not a multiple of four. – Pedro Henriques Jan 12 '09 at 3:03
I'm extend()ing the list so that it's length is a multiple of four before it gets this far. – Ben Blank Jan 12 '09 at 3:44
I've added a link to related question. – J.F. Sebastian Jan 14 '09 at 10:33
@Sebastian, shouldn't you add such link simply as a comment? – Cawas Jul 1 '11 at 20:25
1  
@ΤΖΩΤΖΙΟΥ — The questions are very similar, but not quite duplicate. It's "split into any number of chunks of size N" vs. "split into N chunks of any size". :-) – Ben Blank Jul 21 '11 at 18:16
show 2 more comments
feedback

12 Answers

up vote 33 down vote accepted

Modified from the recipes section of Python's itertools docs:

def grouper(iterable, n, fillvalue=None):
    args = [iter(iterable)] * n
    return izip_longest(*args, fillvalue=fillvalue)

Example
In pesudocode to keep the example terse.

grouper('ABCDEFG', 3, 'x') --> 'ABC' 'DEF' 'Gxx'

Note: izip_longest is new to Python 2.6

link|improve this answer
1  
I know it is taken literally from documentation but I'd change the order of parameters: grouper(iterable, chunksize) and izip_longest(*args, fillvalue=fillvalue) – J.F. Sebastian Jan 12 '09 at 14:53
Very nice! Probably the most compact method here, considering it even combines chunking and padding. Unfortunately, it's pretty opaque. Even having read up on izip_longest, I'm still not sure how this works. :-/ – Ben Blank Jan 12 '09 at 17:47
@J.F. Sebastian: Thanks. That does follow common convention. – Craz Jan 12 '09 at 20:18
8  
Finally got a chance to play around with this in a python session. For those who are as confused as I was, this is feeding the same iterator to izip_longest multiple times, causing it to consume successive values of the same sequence rather than striped values from separate sequences. I love it! – Ben Blank Jan 12 '09 at 22:00
1  
I am not sure if this is the most pythonic answer but it possibly is the best use of [LIST]*n structure. – utku.zih Feb 15 '11 at 0:01
show 3 more comments
feedback
def chunker(seq, size):
    return (seq[pos:pos + size] for pos in xrange(0, len(seq), size))

Simple. Easy. Fast. Works with any sequence:

text = "I am a very, very helpful text"

for group in chunker(text, 7):
   print repr(group),
# 'I am a ' 'very, v' 'ery hel' 'pful te' 'xt'

print '|'.join(chunker(text, 10))
# I am a ver|y, very he|lpful text

animals = ['cat', 'dog', 'rabbit', 'duck', 'bird', 'cow', 'gnu', 'fish']

for group in chunker(animals, 3):
    print group
# ['cat', 'dog', 'rabbit']
# ['duck', 'bird', 'cow']
# ['gnu', 'fish']
link|improve this answer
1  
Clear and compact. Very pythonic. :-) – Ben Blank Jan 12 '09 at 5:46
@Carlos Crasborn's version works for any iterable (not just sequences as the above code); it is concise and probably just as fast or even faster. Though it might be a bit obscure (unclear) for people unfamiliar with itertools module. – J.F. Sebastian Jan 12 '09 at 14:39
@J.F. Sebastian — Now that I've gotten the chance to figure out why his code works, I feel compelled to change my accepted answer (which I hate doing). I love this answer, too, @nosklo, but that izip_longest trick seems tailor-made for my situation. – Ben Blank Jan 12 '09 at 22:03
Agreed. This is the most generic and pythonic way. Clear and concise. (and works on app engine) – Matt Williamson Aug 8 '10 at 4:08
feedback

I'm a fan of

chunkSize= 4
for i in xrange(0, len(ints), chunkSize):
    chunk = ints[i:i+chunkSize]
    # process chunk of size <= chunkSize
link|improve this answer
feedback
import itertools
def chunks(iterable,size):
    it = iter(iterable)
    chunk = tuple(itertools.islice(it,size))
    while chunk:
        yield chunk
        chunk = tuple(itertools.islice(it,size))

# though this will throw ValueError if the length of ints
# isn't a multiple of four:
for x1,x2,x3,x4 in chunks(ints,4):
    foo += x1 + x2 + x3 + x4

for chunk in chunks(ints,4):
    foo += sum(chunk)

Another way:

import itertools
def chunks2(iterable,size,filler=None):
    it = itertools.chain(iterable,itertools.repeat(filler,size-1))
    chunk = tuple(itertools.islice(it,size))
    while len(chunk) == size:
        yield chunk
        chunk = tuple(itertools.islice(it,size))

# x2, x3 and x4 could get the value 0 if the length is not
# a multiple of 4.
for x1,x2,x3,x4 in chunks2(ints,4,0):
    foo += x1 + x2 + x3 + x4
link|improve this answer
+1 for using generators, seams like the most "pythonic" out of all suggested solutions – umnik700 Jan 12 '09 at 3:23
1  
It's rather long and clumsy for something so easy, which isn't very pythonic at all. I prefer S. Lott's version – zenazn Jan 12 '09 at 3:51
feedback
from itertools import izip_longest

def chunker(iterable, chunksize, filler):
    return izip_longest(*[iter(iterable)]*chunksize, fillvalue=filler)
link|improve this answer
+1 iterators and conciseness. – Markus Jarderot Jan 12 '09 at 4:41
A readable way to do it is stackoverflow.com/questions/434287/… – J.F. Sebastian Jan 12 '09 at 14:29
I've removed spaces around '=' in the arguments list (see PEP8). – J.F. Sebastian Jan 12 '09 at 14:33
+1, this is how the python docs recommend doing it. – Thomas Ahle Aug 9 '11 at 10:07
feedback

If the list is large, the highest-performing way to do this will be to use a generator:

def get_chunk(iterable, chunk_size):
    result = []
    for item in iterable:
        result.append(item)
        if len(result) == chunk_size:
            yield tuple(result)
            result = []
    if len(result) > 0:
        yield tuple(result)

for x in get_chunk([1,2,3,4,5,6,7,8,9,10], 3):
    print x

(1, 2, 3)
(4, 5, 6)
(7, 8, 9)
(10,)
link|improve this answer
(I think that MizardX's itertools suggestion is functionally equivalent to this.) – Robert Rossney Jan 12 '09 at 3:40
(Actually, on reflection, no I don't. itertools.islice returns an iterator, but it doesn't use an existing one.) – Robert Rossney Jan 12 '09 at 4:15
feedback

Posting this as an answer since I cannot comment...

Using map() instead of zip() fixes the padding issue in J.F. Sebastian's answer:

>>> def chunker(iterable, chunksize):
...   return map(None,*[iter(iterable)]*chunksize)

Example:

>>> s = '1234567890'
>>> chunker(s, 3)
[('1', '2', '3'), ('4', '5', '6'), ('7', '8', '9'), ('0', None, None)]
>>> chunker(s, 4)
[('1', '2', '3', '4'), ('5', '6', '7', '8'), ('9', '0', None, None)]
>>> chunker(s, 5)
[('1', '2', '3', '4', '5'), ('6', '7', '8', '9', '0')]
link|improve this answer
feedback

Since nobody's mentioned it yet here's a zip() solution:

>>> def chunker(iterable, chunksize):
...     return zip(*[iter(iterable)]*chunksize)

It works only if your sequence's length is always divisible by the chunk size or you don't care about a trailing chunk if it isn't.

Example:

>>> s = '1234567890'
>>> chunker(s, 3)
[('1', '2', '3'), ('4', '5', '6'), ('7', '8', '9')]
>>> chunker(s, 4)
[('1', '2', '3', '4'), ('5', '6', '7', '8')]
>>> chunker(s, 5)
[('1', '2', '3', '4', '5'), ('6', '7', '8', '9', '0')]

Or using itertools.izip to return an iterator instead of a list:

>>> from itertools import izip
>>> def chunker(iterable, chunksize):
...     return izip(*[iter(iterable)]*chunksize)

Padding can be fixed using @ΤΖΩΤΖΙΟΥ's answer:

>>> from itertools import chain, izip, repeat
>>> def chunker(iterable, chunksize, fillvalue=None):
...     it   = chain(iterable, repeat(fillvalue, chunksize-1))
...     args = [it] * chunksize
...     return izip(*args)
link|improve this answer
feedback

There doesn't seem to be a pretty way to do this. Here is a page that has a number of methods, including:

def split_seq(seq, size):
    newseq = []
    splitsize = 1.0/size*len(seq)
    for i in range(size):
        newseq.append(seq[int(round(i*splitsize)):int(round((i+1)*splitsize))])
    return newseq
link|improve this answer
feedback

In your second method, I would advance to the next group of 4 by doing this:

ints = ints[4:]

However, I haven't done any performance measurement so I don't know which one might be more efficient.

Having said that, I would usually choose the first method. It's not pretty, but that's often a consequence of interfacing with the outside world.

link|improve this answer
feedback

If the lists are the same size, you can combine them into lists of 4-tuples with zip(). For example:

# Four lists of four elements each.

l1 = range(0, 4)
l2 = range(4, 8)
l3 = range(8, 12)
l4 = range(12, 16)

for i1, i2, i3, i4 in zip(l1, l2, l3, l4):
    ...

Here's what the zip() function produces:

>>> print l1
[0, 1, 2, 3]
>>> print l2
[4, 5, 6, 7]
>>> print l3
[8, 9, 10, 11]
>>> print l4
[12, 13, 14, 15]
>>> print zip(l1, l2, l3, l4)
[(0, 4, 8, 12), (1, 5, 9, 13), (2, 6, 10, 14), (3, 7, 11, 15)]

If the lists are large, and you don't want to combine them into a bigger list, use itertools.izip(), which produces an iterator, rather than a list.

from itertools import izip

for i1, i2, i3, i4 in izip(l1, l2, l3, l4):
    ...
link|improve this answer
feedback

Using itertools and iter, this simple function works both for sequences (tuples, lists) and iterables (no padding):

def grouper(n, it):
  """grouper(3, 'ABCDEFG') --> ABC DEF G"""
  return iter(lambda: list(itertools.islice(it, n)), [])

>>> list(grouper(2, iter([1,2,3,4,5])))
[[1,2], [3,4], [5]]
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.