Python 中的全局变量和局部变量

x = 2
def funcx():
x = 9
print “this x is in the funcx:–>”,x
funcx()
print “————————–“
print “this x is out of funcx:–>”,x
这段代码输出的结果:
this x is in the funcx:–> 9
————————–
this x is out of funcx:–> 2

从输出看出,运行 funcx(),输出了 funcx() 里面的变量 x=9;
然后执行代码中的最后一行,print “this x is out of funcx:–>”,x

局部变量 : 只在函数体内(某个范围内)起作用的变量
应该尽量避免使用全局变量。不同的模块都可以自由的访问全局变量,可能会导致全局变量的不可预知性
Python 查找变量是顺序是:先局部变量,再全局变量

x = 2
def funcx():
global x # 声明 x 是全局变量,
x = 9
print “this x is in the funcx:–>”,x
funcx()
print “————————–“
print “this x is out of funcx:–>”,x

输出结果:
this x is in the funcx:–> 9
————————–
this x is out of funcx:–> 9

在python中,全局变量一般有两种使用方式:

第一种:是在一个单独的模块中定义好,然后在需要使用的全局模块中将定义的全局变量模块导入。

第二种:直接在当前的模块中定义好,然后直接在本模块中通过 global 声明,然后使用

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值