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