How do I use global variables in python functions?
如何在 python 函数中设置全局变量?
要在函数内部使用
1
2 3 4 5 6 7 8 9 |
testVar = 0
def testFunc(): print testVar |
给出输出
1
2 3 |
>>>
0 1 |
请记住,如果您想进行分配/更改它们,您只需要在函数内声明它们
你可以的,
1
2 |
def testFunc2():
print testVar |
没有像我们在第一个函数中那样声明它
以
1
2 3 4 5 6 7 8 9 10 |
testVar = [] def testFunc1(): testVar = [2] # Will create a local testVar and assign it [2], but will not change the global variable. def testFunc2(): def testFunc3(): |
一个全局变量可以被任何函数访问,但是只有在函数内部使用’global’关键字显式声明它才能被修改。举个例子,一个实现计数器的函数。你可以用这样的全局变量来做到这一点:
1
2 3 4 5 6 7 8 9 10 11 12 13 |
count = 0
def funct(): print funct() # prints 1 print count # prints 3 |
现在,这一切都很好,但通常将全局变量用于除常量之外的任何东西都不是一个好主意。你可以有一个使用闭包的替代实现,这将避免污染命名空间并且更干净:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
def initCounter(): count = 0 def incrementCounter(): count += 1 return count #notice how you’re returning the function with no parentheses myFunct = initCounter() print count # raises an error! |
考虑以下代码:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
a = 1
def f(): def g(): def h(): print ‘global: ‘,a |
输出:
1
2 3 4 5 6 7 |
global: 1
f: 1 global: 1 g: 2 global: 1 h: 3 global: 3 |
基本上,当您需要每个函数访问同一个变量(对象)时,您会使用全局变量。不过,这并不总是最好的方法。
在下面的示例中,我们在任何其他函数之外定义了一个变量
然而,在
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
>>> 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 |
在函数中使用
几天来我一直在努力解决同样的问题/误解了我想要的东西,我认为您可能想要完成的是让函数输出结果,可以在函数完成运行后使用。
您可以在上面完成的方法是使用返回”一些结果”,然后将其分配给函数之后的变量。
下面是一个例子:
1
2 3 4 5 6 7 8 9 10 |
#function def test_f(x): y = x + 2 return y #execute function, and assign result as another variable |
普通变量只能在函数内部使用,全局变量可以在函数外部调用,但如果不需要,请不要使用它,它会产生错误,大型编程公司认为这是一个菜鸟要做的事情。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/267972.html