源代码
x = "awesome" def myfunc(): global x x = "fantastic" myfunc() print("Python is " + x)
运行结果