Re: accumulator generators
- From: "Diez B. Roggisch" <deets@xxxxxxxxxxxxx>
- Date: Fri, 30 May 2008 22:04:15 +0200
Cameron schrieb:
I was reading this <a href="this http://www.paulgraham.com/icad.html">Paul
Graham article</a> and he builds an accumuator generator function in
the appendix. His looks like this:
<pre>
def foo(n):
s = [n]
def bar(i):
s[0] += i
return s[0]
return bar
</pre>
Why does that work, but not this:
<pre>
def foo(n):
s = n
def bar(i):
s += i
return s
return bar
</pre>
Because python's static analysis infers s as being a variable local to bar in the second case - so you can't modify it in the outer scope.
In the future, you may declare
def bar(i):
nonlocal s
...
Diez
.
- Follow-Ups:
- Re: accumulator generators
- From: Cameron
- Re: accumulator generators
- References:
- accumulator generators
- From: Cameron
- accumulator generators
- Prev by Date: Re: should I put old or new style classes in my book?
- Next by Date: Re: accumulator generators
- Previous by thread: accumulator generators
- Next by thread: Re: accumulator generators
- Index(es):
Relevant Pages
|