关于Python veriable scope 的一点疑问时间:2023-12-26 08:32:13在写程序中遇到了类似于以下代码的问题: #不会报错 a=1 def f(): print(a) f() #会报错 a=1 def f(): a+=1 f()