# File: scope6.py # # The only way to change the binding of # a variable outside of inc() is thru # assignment outside of inc(). # def inc(x): return x + 1 n = 3 n = inc(n) print("n = ", n) ''' Output from the program: n = 4 '''