Result Size:
625 x 571
demo_variables_global3.py:
def myfunc(): global x x = "fantastic" myfunc() print("Python is " + x)
x
def
myfunc
():
global
x
x
=
"fantastic"
myfunc
()
print
(
"Python is "
+
x
)
C:\Users\My Name>python demo_variables_global3.py
Python is fantastic