Python scope - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:29:57Z http://stackoverflow.com/feeds/question/146359 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> http://stackoverflow.com/questions/146359/python-scope/146365#146365 11 Answer by Greg Hewgill for Python scope Greg Hewgill 2008-09-28T18:02:54Z 2009-09-02T02:57:36Z <p>Within a function, variables that are assigned to are treated as local variables by default. To assign to global variables, use the <a href="http://www.python.org/doc/ref/global.html" rel="nofollow"><code>global</code></a> statement:</p> <pre><code>def g(n): global c c = c + n </code></pre> <p>This is one of the quirky areas of Python that has never really sat well with me.</p> http://stackoverflow.com/questions/146359/python-scope/146546#146546 6 Answer by ironfroggy for Python scope ironfroggy 2008-09-28T19:33:23Z 2008-09-28T19:33:23Z <p>Global state is an thing to avoid, especially needing to mutate it. Consider if g() should simply take two parameters or if f() and g() need to be methods of a common class with c an instance attribute</p> <pre><code>class A: c = 1 def f(self, n): print self.c + n def g(self, n): self.c += n a = A() a.f(1) a.g(1) a.f(1) </code></pre> <p>Outputs:</p> <pre><code>2 3 </code></pre> http://stackoverflow.com/questions/146359/python-scope/146563#146563 1 Answer by rhymes for Python scope rhymes 2008-09-28T19:39:13Z 2008-09-28T19:39:13Z <p>Other than what Greg said, in Python 3.0, there will be the nonlocal statement to state "here are some names that are defined in the enclosing scope". Unlike global those names have to be already defined outside the current scope. It will be easy to track down names and variables. Nowadays you can't be sure where "globals something" is exactly defined.</p> http://stackoverflow.com/questions/146359/python-scope/150546#150546 2 Answer by Krzysiek Goj for Python scope Krzysiek Goj 2008-09-29T20:42:21Z 2008-09-29T20:42:21Z <p>Errata for <a href="http://stackoverflow.com/questions/146359/python-scope#146365">Greg's post</a>:</p> <p>There should be no <i>before they are referenced</i>. Take a look: <code><pre> x = 1 def explode(): print x # raises UnboundLocalError here x = 2 </pre></code></p> <p>It explodes, even if x is assigned after it's referenced. In Python variable can be local or refer outer scope, and it cannot change in one function.</p>