PHP前端开发

Python 局部变量修改错误:如何解决“UnboundLocalError”?

百变鹏仔 5天前 #Python
文章标签 如何解决

python 局部变量错误剖析

当尝试修改函数内定义的局部变量时,可能会遇到 "unboundlocalerror" 错误。这是因为 python 严格区分局部和全局变量,而局部变量只在函数的作用域内有效。

在示例代码中:

def f1():<p><span>立即学习</span>“<a href="https://pan.quark.cn/s/00968c3c2c15" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">Python免费学习笔记(深入)</a>”;</p><pre class="brush:php;toolbar:false">i=1def f2():    i=i+1</code>

f2() 函数试图修改 f1() 函数中定义的局部变量 i,但它无法访问该变量。这是因为嵌套函数 f2() 不会继承父函数局部变量的修改。

要解决此错误,可以将 i 声明为非局部变量,这样 f2() 就可以访问它了:

def f1():<p><span>立即学习</span>“<a href="https://pan.quark.cn/s/00968c3c2c15" style="text-decoration: underline !important; color: blue; font-weight: bolder;" rel="nofollow" target="_blank">Python免费学习笔记(深入)</a>”;</p><pre class="brush:php;toolbar:false">i=1def f2():    nonlocal i    i=i+1</code>

nonlocal 关键字告诉 python 将 i 视为父函数 f1() 的局部变量。现在,f2() 可以直接修改 f1() 中的 i。