码迷,mamicode.com
首页 > 编程语言 > 详细

Python9-6

时间:2014-09-06 16:01:43      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   ar   art   div   sp   

函数中“引用”全局变量和“修改”全局变量的差别

以下程序中,函数中可以直接打印出全局变量x,而无须使用关键字global:

x = 1

def run(): 
    print x
    
if __name__ == __main__:
    run()

当在函数中需要修改全局变量时,如果没有global关键字则会出错:

x = 1

def run():    
    print x
    x = 2
    
if __name__ == __main__:
    run()

以上程序中python发现变量x在函数内部被赋值,则将x识别为局部变量,此时局部变量还未赋值时就被使用,所以报错。

加上global关键字后,可以得到希望的结果:

x = 1

def run():   
    global x 
    print x
    x = 2
    
if __name__ == __main__:
    run()

 

Python9-6

标签:style   blog   http   color   使用   ar   art   div   sp   

原文地址:http://www.cnblogs.com/zxpgo/p/3959462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!