美文网首页
载 python的UnboundLocalError: loca

载 python的UnboundLocalError: loca

作者: 03ca2835cf70 | 来源:发表于2019-11-26 09:54 被阅读0次

    <article class="baidu_pl">

    From: http://blog.sina.com.cn/s/blog_8d3652760101d01p.html

    一、意思

    本地变量xxx引用前没定义。
    

    二、错误原因

    在于python没有变量的声明 , 所以它通过一个简单的规则找出变量的范围 :如果有一个函数内部的变量赋值 ,该变量被认为是本地的,所以如果有修改变量的值就会变成局部变量。
    

    三、产生这个错误的场景

    python代码:
    val=9
    def test(flag):
    if flag:
    val = 1
    else:
    print 'fuck'
    returnval
    test(0)
    错误提示:UnboundLocalError: local variable 'val' referenced before assignment

    解决方法:用global关键字来进行说明该变量是全局变量
    python代码:
    val=9
    def test(flag):
    global val
    if flag:
    val = 1
    else:
    print 'test'
    return val

    test(0)

    参考资料:http://www.uplook.cn/biancheng/107/1078875/

    </article>

    相关文章

      网友评论

          本文标题:载 python的UnboundLocalError: loca

          本文链接:https://www.haomeiwen.com/subject/isfewctx.html