首页 > 代码库 > python main函数中变量默认为global variable
python main函数中变量默认为global variable
在python的main函数中的变量默认为全局变量,而其他的def函数中的变量则默认为局部变量。
当然,局部变量会优先于全局变量,在执行formal_print(t_global)语句时便可看出。
测试代码如下:
<span style="font-size:18px;">#coding=utf-8 #测试python的全局变量,局部变量的机制 def formal_print(s_global):#常规的传参用法,传递参数进行print,变量名可任意 print "formal_print: ", s_global return def global_print():#无参数传递,直接对global variable进行print print "global_print: ", s_global def global_print_para(st):#此处虽然传递了一个参数st,但是并没有在函数中用到 print "global_print_para: ", s_global def test_global(): stest = 'test_global' print "test_global: ", stest return if __name__ == '__main__': s_global = 'global variable s_global'#main函数中声明的变量默认为global variable,而其他def函数中声明的变量则默认为local variable t_global = 'global variable t_global' formal_print(s_global) formal_print(t_global) global_print() test_global() #formal_print(stest)#虽然在test_global()中声明了变量stest,但stest并非全局变量 print 'End.' </span>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。