What will be the output of the following code snippet?
def func():
global value
value = "Local"
value = "Global"
func()
print(value)





Posted on by