User all-too-human - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T03:33:18Zhttp://stackoverflow.com/feeds/user/9059http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/146359/python-scope7Python scopeall-too-human2008-09-28T17:59:30Z2009-09-02T02:57:36Z
<p>Hello, I am trying to figure out this:</p>
<pre><code>c = 1
def f(n):
print c + n
def g(n):
c = c + n
f(1) => 2
g(1) => UnboundLocalError: local variable 'c' referenced before assignment
</code></pre>
<p>Thanks!</p>