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