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