What is the output of the following code ?
def foo(x): print("outer function") def bar(a): print("inner function") print(a,x) foo(3) bar(1)
The bar() function is a nested and present inside foo().The bar() function is not available for call, so it will raise an error
Comment here: