# File: scope1.py # # A simple function that returns x + 1 # # No change to n outside the inc() function. def inc(x): return x + 1 n = 3 print(inc(n)) print("n =", n) ''' Output from the program: 4 n = 3 '''