Que > Program to demonstrate the Scope of Variables
file.py
a="Global"
def fun(a):
print(a)
print(a)
fun("Local")
Output
Global
Local
Que > Program to demonstrate the Scope of Variables
a="Global"
def fun(a):
print(a)
print(a)
fun("Local")
Global
Local