fork download
  1. x = "awesome"
  2.  
  3. def myfunc():
  4. global x
  5. x = "fantastic"
  6.  
  7. myfunc()
  8.  
  9. print("Python is " + x)
Success #stdin #stdout 0.06s 14184KB
stdin
Standard input is empty
stdout
Python is fantastic