源代码
x = 100 def myfunc(): x = 200 print(x) myfunc() print(x)
运行结果