show/hide this revision's text 2 fixed per errata

Within a function, variables that are assigned before they to are referenced end up being 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.

show/hide this revision's text 1

Within a function, variables that are assigned before they are referenced end up being local variables. 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.