Q. What will be the output
Code:
def f1(x): global x x+=1 print(x) f1(15) print("hello")
β
Correct Answer: (A)
error
def f1(x): global x x+=1 print(x) f1(15) print("hello")
You must be Logged in to update hint/solution