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