vote up 2 vote down star

In Python I'm getting the following error:

UnboundLocalError: local variable 'total' referenced before assignment

At the start of the file (before the function where the error comes from), I declare 'total' using the global keyword. Then, in the body of the program, before the function that uses 'total' is called, I assign it to 0. I've tried setting it to 0 in various places (including the top of the file, just after it is declared), but I can't get it to work. Does anyone see what I'm doing wrong?

edit: Nikhil, thanks. That was it.

flag

4  
Are you declaring global in the function? – Nikhil Chelliah May 13 at 0:10

1 Answer

vote up 7 vote down check

I think you are using 'global' incorrectly. See Python reference. You should declare variable without global and then inside the function when you want to access global variable you declare it 'global yourvar'.

#!/usr/bin/python

total

def checkTotal():
    global total
    total = 0

See this example:

#!/usr/bin/env python

total = 0

def doA():
    # not accessing global total
    total = 10

def doB():
    global total
    total = total + 1

def checkTotal():
    # global total - not required as global is required
    # only for assignment - thanks for comment Greg
    print total

def main():
    doA()
    doB()
    checkTotal()

if __name__ == '__main__':
    main()

Because doA() does not modify the global total the output is 1 not 11.

link|flag
4  
It might be worth nothing that you only need the "global" keyword if you assign to the global variable within a local scope. So in your example, the global declaration is not required in checkTotal(). – Greg Hewgill May 13 at 0:31
Comprehensive answer, and a well-sussed analysis of the essential misunderstanding behind the question. – Jarret Hardie May 13 at 0:40
I meant it might be worth noting of course! Still can't edit comments without delete-readd. :( – Greg Hewgill May 13 at 0:49

Your Answer

Get an OpenID
or

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