Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the simplest and reasonably efficient way to slice a list into a list of the sliced sub-list sections for arbitrary length sub lists.

For example, if our source list is:

input = [1, 2, 3, 4, 5, 6, 7, 8, 9, ... ]

And our sub list length is 3 then we seek:

output = [ [1, 2, 3], [4, 5, 6], [7, 8, 9], ... ]

Likewise if our sub list length is 4 then we seek:

output = [ [1, 2, 3, 4], [5, 6, 7, 8], ... ]
share|improve this question
1  
@James: your addition is of absolutely no relevance. – SilentGhost Feb 9 '10 at 19:13
1  
You may be interested in the discussion of this question (stackoverflow.com/questions/2095637) – telliott99 Feb 9 '10 at 20:44
possible duplicate of How do you split a list into evenly sized chunks in Python? – tzot Jun 17 '11 at 6:28

3 Answers

up vote 8 down vote accepted
[input[i:i+n] for i in range(0, len(input), n)]        # use xrange in py2k

where n is the length of a chunk.

Since you don't define what might happened to the final element of the new list when the number of elements in input is not divisible by n, I assumed that it's of no importance: with this you'll get last element equal 2 if n equal 7, for example.

share|improve this answer

The documentation of the itertools module contains the following recipe:

import itertools

def grouper(n, iterable, fillvalue=None):
    "grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx"
    args = [iter(iterable)] * n
    return itertools.izip_longest(fillvalue=fillvalue, *args)

This function returns an iterator of tuples of the desired length:

>>> list(grouper(2, [1,2,3,4,5,6,7]))
[(1, 2), (3, 4), (5, 6), (7, None)]
share|improve this answer
while this is working with any iterable, it doesn't seem to be as efficient (at least in my tests) as my code when applied to the given task. – SilentGhost Feb 9 '10 at 19:12
2  
@SilentGhost, Premature optimization? – Mike Graham Feb 9 '10 at 19:15
@Mike: I beg your pardon? – SilentGhost Feb 9 '10 at 19:16
Brilliant solution! – z4y4ts Dec 4 '10 at 16:40

I like SilentGhost's solution.

My solution uses functional programming in python:

group = lambda t, n: zip(*[t[i::n] for i in range(n)])
group([1, 2, 3, 4], 2)

gives:

[(1, 2), (3, 4)]

This assumes that the input list size is divisible by the group size. If not, unpaired elements will not be included.

share|improve this answer
your second example is limited to python-2.x. in py3k map cannot take None as a first argument. – SilentGhost Feb 9 '10 at 19:51
@SilentGhost: you are right, I'm removing it though. – MKTech Feb 9 '10 at 22:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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