如何在 python 函数中设置全局变量?
7 回答
要global
在函数内部使用变量,您需要global <varName>
在函数内部进行,就像这样。
testVar = 0
def testFunc():
global testVar
testVar += 1
print testVar
testFunc()
print testVar
给出输出
>>>
0
1
请记住,global
如果您想进行分配/更改它们,您只需要在函数内声明它们。global
不需要打印和访问。
你可以做,
def testFunc2():
print testVar
global
没有像我们在第一个函数中那样声明它,它仍然会给出正确的值。
以 alist
为例,您不能在list
不声明的情况下分配 a,global
但您可以调用它的方法并更改列表。如下。
testVar = []
def testFunc1():
testVar = [2] # Will create a local testVar and assign it [2], but will not change the global variable.
def testFunc2():
global testVar
testVar = [2] # Will change the global variable.
def testFunc3():
testVar.append(2) # Will change the global variable.
考虑以下代码:
a = 1
def f():
# uses global because it hasn't been rebound
print 'f: ',a
def g():
# variable is rebound so global a isn't touched
a = 2
print 'g: ',a
def h():
# specify that the a we want is the global variable
global a
a = 3
print 'h: ',a
print 'global: ',a
f()
print 'global: ',a
g()
print 'global: ',a
h()
print 'global: ',a
输出:
global: 1
f: 1
global: 1
g: 2
global: 1
h: 3
global: 3
基本上,当您需要每个函数访问同一个变量(对象)时,您会使用全局变量。不过,这并不总是最好的方法。
任何函数都可以访问全局,但只有在函数内使用“全局”关键字显式声明它时才能对其进行修改。举个例子,一个实现计数器的函数。你可以用这样的全局变量来做到这一点:
count = 0
def funct():
global count
count += 1
return count
print funct() # prints 1
a = funct() # a = 2
print funct() # prints 3
print a # prints 2
print count # prints 3
现在,这一切都很好,但是将全局变量用于除常量之外的任何东西通常都不是一个好主意。你可以有一个使用闭包的替代实现,这将避免污染命名空间并且更清洁:
def initCounter():
count = 0
def incrementCounter():
count += 1
return count
#notice how you're returning the function with no parentheses
#so you return a function instead of a value
return incrementCounter
myFunct = initCounter()
print myFunct() # prints 1
a = myFunct() # a = 2
print myFunct() # prints 3
print a # prints 2
print count # raises an error!
# So you can use count for something else if needed!
在函数内部使用显式声明global <variable name>
应该会有所帮助
在下面的示例中,我们在c
任何其他函数之外定义了一个变量。我们foo
还声明了 a c
,将其递增并打印出来。您可以看到重复调用foo()
将一遍又一遍地产生相同的结果,因为c
infoo
在函数的范围内是局部的。
但是,在bar
中,关键字global
是在 之前添加的c
。现在该变量c
引用c
了在全局范围内定义的任何变量(即我们c = 1
在函数之前定义的实例)。bar
重复调用会更新全局c
而不是本地范围。
>>> c = 1
>>> def foo():
... c = 0
... c += 1
... print c
...
>>> def bar():
... global c
... c += 1
... print c
...
>>> foo()
1
>>> foo()
1
>>> foo()
1
>>> bar()
2
>>> bar()
3
普通变量只能在函数内部使用,全局变量可以在函数外部调用,但如果不需要,请不要使用它,它会产生错误,大型编程公司认为这是菜鸟做。
几天来我一直在努力解决同样的问题/误解了我想要的东西,我认为你可能想要完成的是有一个函数输出结果,可以在函数完成运行后使用。
您可以在上面完成的方法是使用return “some result”,然后在函数之后将其分配给变量。下面是一个示例:
#function
def test_f(x):
y = x + 2
return y
#execute function, and assign result as another variable
var = test_f(3)
#can use the output of test_f()!
print var #returns 5
print var + 3 #returns 8