Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking to increment a value by one and Python does not have the ++ operator. Consider the following example:

# In a method called calculate(self, basecost, othertaxes=None)
# Returns the value of the tax (self) applied to basecost in relation to previous taxes
i = -1
basecost += sum((tax.calculate(basecost, othertaxes[:i.__add__(1)]) for tax in othertaxes))

Is the use of __add__ in this example a bad idea? Is there a better way to write this statement?

Cheers - D


UPDATE

I have changed the answer because the for ... in ...: v += calc solution is much faster than the sum() method. 6 seconds faster over 10000 iterations given my setup but the performance difference is there. Bellow is my test setup:

class Tax(object):
    def __init__(self, rate):
        self.rate = rate

def calculate_inline(self, cost, other=[]):
    cost += sum((o.calculate(cost, other[:i]) for i, o in enumerate(other)))
    return cost * self.rate

def calculate_forloop(self, cost, other=[]):
    for i, o in enumerate(other):
        cost += o.calculate(cost, other[:i])
    return cost * self.rate

def test():
    tax1 = Tax(0.1)
    tax2 = Tax(0.2)
    tax3 = Tax(0.3)
    Tax.calculate =  calculate_inline # or calculate_forloop
    tax1.calculate(100.0, [tax2, tax3]) 

if __name__ == '__main__':
    from timeit import Timer
    t = Timer('test()', 'from __main__ import test; gc.enable()')
    print t.timeit()

With Tax.calculate = calculate_inline, the problem took 16.9 seconds, with calculate_forloop, it took 10.4 seconds.

share|improve this question
Does Python have an addition operator + ? – Robert Harvey Apr 15 '11 at 3:19
Yes, but no increment operator (e.g. i++ or ++i). In the line, I need i to increment by one and returned. – Dimitry Apr 15 '11 at 3:19
Um, how about i += 1? – Robert Harvey Apr 15 '11 at 3:20
1  
why not just othertaxes[:i+1]? – Chris Apr 15 '11 at 3:21
1  
I've seen that horrendous double-underscore thing in Python code before. If it's only ugly you're worried about, I wouldn't lose any sleep over it. – Robert Harvey Apr 15 '11 at 3:28
show 5 more comments

4 Answers

up vote 3 down vote accepted

If I'm reading that right:

for i,tax in enumerate(othertaxes):
    basecost += tax.calculate(basecost,othertaxes[:i])
share|improve this answer
Equally good and probably more legible answer. But I do like the one-line approach. Thanks for your help! – Dimitry Apr 15 '11 at 3:42
The better answer after all. – Dimitry Apr 15 '11 at 19:52

Seems to be this:

basecost += sum((tax.calculate(basecost, othertaxes[:i]) 
                      for i,tax in enumerate(othertaxes))
share|improve this answer
Brilliant! Thanks, mate. – Dimitry Apr 15 '11 at 3:39

In Python, integers are not mutable (neither are floats, booleans or strings).

You cannot change the value of i unless you write i += 1. i.add(1) does not change the value of i, it just returns a new integer which equals (i+1).

share|improve this answer

You would normally do a lambda x: x+1 instead of using __add__

share|improve this answer
Doesn't work in this context. – Dimitry Apr 15 '11 at 3:22

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.