def a():
x=20
def b():
global x
x=88
print("before calling b",x)
b()
print("after calling b",x)
a()
My code is showing no error while debugging but when I run it, it shows no output. It is not getting the function.
b()?