>>> a = 1 # reset a
>>> def g(b):
        a = 2 # creates a new local a
        return b + 2  # change this to:    return b + a

Reply via email to