Closure
def out_func():
x=1
z=3
def inner_func():
print("This is outer value :", x+z)
return inner_func
a = out_func()
a()
INFO
def out_func():
x=1
z=3
def inner_func():
print("This is outer value :", x+z)
return inner_func
a = out_func()
a()