w3schools
编辑器
运行结果尺寸:
625 x 591
x = "awesome" def myfunc(): global x x = "fantastic" myfunc() print("Python is " + x)
x
x = "awesome"
def myfunc():
global x
x = "fantastic"
myfunc()
print("Python is " + x)
Python is fantastic