

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
def outer():
x = 1
def inner():
return x + 1
x = 10
return inner
print(outer()())

Trace the program the way the computer would, then make your call before running anything.
def outer():
x = 1
def inner():
return x + 1
x = 10
return inner
print(outer()())