Jan17
def out_func():
x = 10
y = 1
def inner_func():
print("this is outer value :", x)
return inner_func
a = out_func()
a()INFO
def out_func():
x = 10
y = 1
def inner_func():
print("this is outer value :", x)
return inner_func
a = out_func()
a()