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

Posted on by