python_variables_global_1.py:
x
 
x = "awesome"
def myfunc():
  print("Python is " + x)
myfunc()