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

Python 变量的作用域

时间:2015-01-06 19:39:08      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 

函数体内的局部变量和全局变量如果重名,全局变量不可见。

x = 50

def func(x):
    print(x=, x)  #50
    x = 2           
    print(x=, x)  #2

func(x)

print(x=, x)      #50

 

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

x = 50

def run():
    print x
    x = 2  

run()

报错为:UnboundLocalError: local variable ‘x‘ referenced before assignment

 

加上global关键字以后则OK

x = 50

def run():
    global x
    x = 2  

run()
print x     #2

 

Python 变量的作用域

标签:

原文地址:http://www.cnblogs.com/chenny7/p/4206497.html

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