Scoping - 2
#x = 1
def a():
global x
#print(x+1) # global x
x = 1
y = 2 # y is closure here
def b():
print(y,x)
b()
a()
print(x)INFO
#x = 1
def a():
global x
#print(x+1) # global x
x = 1
y = 2 # y is closure here
def b():
print(y,x)
b()
a()
print(x)