Programming Examples
Python program to illustrate the global variable
Write a Python program to show the application of Global variable.
Solution
x="global"
def check():
global x
print(x)
x="Local"
#x="Local"
check()
print(x)
Output/ Explanation:
global
Local