What will be the correct output of the following Python code?
b=5
def fun():
b=10
print(b)
fun()
print(b)


Posted on by