vote up 0 vote down star

Is there anyway to get tuples operation in python to work like this:

>>>a = (1,2,3)
>>>b = (3,2,1)
>>>a + b
(4,4,4)

instead of:

>>>a = (1,2,3)
>>>b = (3,2,1)
>>>a + b
(1,2,3,3,2,1)

I know it works like that because the __add__ and __mul__ methods are defined to work like that. So the only way would be to redefine them?

flag

6 Answers

vote up 7 vote down check

Sort of combined the first two answers, with a tweak to ironfroggy's code so that it returns a tuple:

import operator

class stuple(tuple):
    def __add__(self, other):
        return self.__class__(map(operator.add, self, other))
        # obviously leaving out checking lengths

>>> a = stuple([1,2,3])
>>> b = stuple([3,2,1])
>>> a + b
(4, 4, 4)

Note: using self.__class__ instead of stuple to ease subclassing.

link|flag
Doesn't it make more sense for add to return stuple(...)? – Roger Pate Jan 31 at 2:05
Changed it to stuple() – S.Lott Jan 31 at 2:33
Ah, yeah, thanks guys :) – Dana Jan 31 at 2:35
vote up 7 vote down
import operator
map(operator.add, a, b)
link|flag
just recast to a tuple... – daniel Jan 31 at 1:23
I'd say this is the most pythonic solution. – Matthew Schinckel Jan 31 at 1:34
vote up 2 vote down

Yes. But you can't redefine built-in types. You have to subclass them:

class MyTuple(tuple):
    def __add__(self, other):
         if len(self) != len(other):
             raise ValueError("tuple lengths don't match")
         return MyTuple(x + y for (x, y) in zip(self, other))
link|flag
but then you can't use the tuple syntax. – toby Jan 31 at 0:59
vote up 2 vote down

What others have said so far is correct, but if you're more generally interested in vectorizing your code, you might want to check out NumPy arrays.

link|flag
vote up 2 vote down
map(sum,zip(a,b))
link|flag
vote up 1 vote down

from numpy import *

a = array( [1,2,3] )
b = array( [3,2,1] )

print a + b

gives array([4,4,4]).

See http://www.scipy.org/Tentative_NumPy_Tutorial

link|flag

Your Answer

Get an OpenID
or

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