User all-too-human - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:33:18Z http://stackoverflow.com/feeds/user/9059 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/146359/python-scope 7 Python scope all-too-human 2008-09-28T17:59:30Z 2009-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) =&gt; 2 g(1) =&gt; UnboundLocalError: local variable 'c' referenced before assignment </code></pre> <p>Thanks!</p>