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