demo_variables_global4.py:
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