Function calls and globals
def b():
print ("I am from function b")
return 1
def a(i,j):
x= i
y=j
z = x+ y
print(z)
a(b()+b(),3)
print (globals())INFO
def b():
print ("I am from function b")
return 1
def a(i,j):
x= i
y=j
z = x+ y
print(z)
a(b()+b(),3)
print (globals())