vote up 3 vote down star
1

What is the nicest way of splitting this:

tuple = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')

into this:

tuples = [('a', 'b'), ('c', 'd'), ('e', 'f'), ('g', 'h')]

Assuming that the input always has an even number of values.

flag

76% accept rate
5  
You may not want to a variable named tuple as it overwrites the builtin function tuple(). – recursive Apr 16 at 15:55

5 Answers

vote up 21 vote down check

zip() is your friend:

t = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
zip(t[::2], t[1::2])
link|flag
Nice alternative! – coonj Apr 16 at 15:13
+1 because it's pretty and I didn't know about the [::] syntax – Steve B. Apr 16 at 15:14
doesn't works for tuple = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i') # note the last 'i', that makes the tuples odd-length – dfa Apr 16 at 17:12
@dfa: what do you mean it doesn't work? is it specified how new list should be formed in case of odd-length input? – SilentGhost Apr 16 at 17:18
ops, I've just read: "Assuming that the input always has an even number of values." – dfa Apr 16 at 17:21
show 1 more comment
vote up 12 vote down
[(tuple[a], tuple[a+1]) for a in range(0,len(tuple),2)]
link|flag
+1 more explicit use of the range function – coonj Apr 16 at 15:09
vote up -1 vote down

Here's a general recipe for any-size chunk, if it might not always be 2:

def chunk(seq, n):
    return [seq[i:i+n] for i in range(0, len(seq), n)]

chunks= chunk(tuples, 2)

Or, if you enjoy iterators:

def iterchunk(iterable, n):
    it= iter(iterable)
    while True:
        chunk= []
        try:
            for i in range(n):
                chunk.append(it.next())
        except StopIteration:
            break
        finally:
            if len(chunk)!=0:
                yield tuple(chunk)
link|flag
2  
I think you meant range(0, len(seq), n), rather than range(0, len(seq)) – Noah Apr 16 at 16:18
-1: doesn't work. – nosklo Apr 16 at 16:53
Noah: ta, indeed. – bobince Apr 16 at 17:01
vote up 3 vote down

Or, using itertools (see the recipe for grouper):

from itertools import izip
def group2(iterable):
   args = [iter(iterable)] * 2
   return izip(*args)

tuples = [ab for ab in group2(tuple)]
link|flag
+1: for mentioning the documentation (you came first:) – ΤΖΩΤΖΙΟΥ Apr 16 at 17:54
vote up 0 vote down

Using itertools.groupby:

import itertools

def generate_keyfunc(n):
    """Returns a keyfunc that groups elements n by n"""
    i = itertools.count(0)
    def keyfunc(v):
        return i.next() / n
    return keyfunc

t = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
grouped_t = [tuple(g) for k, g in itertools.groupby(t, generate_keyfunc(2))]

I admit that this solution is a bit more complicated/long than other one liners, but it's more (memory) efficient. No partial or complete copies of the initial list/iterator are created.

link|flag

Your Answer

Get an OpenID
or

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