7
votes
4answers
836 views
Python scope
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 assi …
