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

python局部变量与全局变量

时间:2017-10-27 01:29:33      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:bsp   gre   pytho   引用   name   变量   nbsp   全局变量   出错   

name = "head first python"
def what_happens_here():
    print(name)  1
    name = "python"  2
    name = name + "is a great book!"
    print(name)
what_happens_here()
print(name)

 

这里行1 会出错,原因,行2中对name进行赋值,所以name是局部变量,然后行1中,在未赋值前就先引用 ,所以出错

python局部变量与全局变量

标签:bsp   gre   pytho   引用   name   变量   nbsp   全局变量   出错   

原文地址:http://www.cnblogs.com/xqnq2007/p/7739916.html

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