python_variables_global_3.py:
x
 
def myfunc():
  global x
  x = "fantastic"
myfunc()
print("Python is " + x)