美文网首页
python入门与进阶(8-11)

python入门与进阶(8-11)

作者: buaishengqi | 来源:发表于2018-05-02 20:07 被阅读11次

    8-11 global关键字
    全局变量不仅仅可以在模块里使用,在整个应用程序里都是可以引用的

    def demo():
        global c  #使用global可以访问局部变量(把局部变成全局)
        c = 2
    
    demo()
    print(c)
    #在整个应用程序里均可以使用global,不仅仅是在模块中
    
    02.jpg

    相关文章

      网友评论

          本文标题:python入门与进阶(8-11)

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