vote up 7 vote down star
1

Hello, I am trying to figure out this:

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

Thanks!

flag

4 Answers

vote up 11 vote down check

Within a function, variables that are assigned to are treated as local variables by default. To assign to global variables, use the global statement:

def g(n):
    global c
    c = c + n

This is one of the quirky areas of Python that has never really sat well with me.

link|flag
errata: stackoverflow.com/questions/146359/… please, remove 'before they are referenced', and this answer will be perfect. – Krzysiek Goj Sep 29 '08 at 20:46
I agree with the errata. Please update the answer. – Lanny Sep 2 at 2:37
Fixed, thanks for the nudge. – Greg Hewgill Sep 2 at 2:58
vote up 2 vote down

Errata for Greg's post:

There should be no before they are referenced. Take a look:

x = 1
def explode():
    print x # raises UnboundLocalError here
    x = 2

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 7 vote down

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

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)

Outputs:

2
3
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.