什么是全局声明?它是如何使用的?我已经阅读了Python 的官方定义;
但是,这对我来说没有多大意义。
5 回答
python 中的每个“变量”都被限制在一定的范围内。python“文件”的范围是模块范围。考虑以下:
#file test.py
myvariable = 5 # myvariable has module-level scope
def func():
x = 3 # x has "local" or function level scope.
具有局部作用域的对象在函数退出后立即消失并且永远无法检索(除非您return
这样做),但在函数中,您可以访问模块级作用域(或任何包含作用域)中的变量:
myvariable = 5
def func():
print(myvariable) # prints 5
def func2():
x = 3
def func3():
print(x) # will print 3 because it picks it up from `func2`'s scope
func3()
但是,您不能对该引用使用赋值并期望它将传播到外部范围:
myvariable = 5
def func():
myvariable = 6 # creates a new "local" variable.
# Doesn't affect the global version
print(myvariable) # prints 6
func()
print(myvariable) # prints 5
现在,我们终于到了global
。关键字是告诉 python 函数中的global
特定变量是在全局(模块级)范围内定义的方式。
myvariable = 5
def func():
global myvariable
myvariable = 6 # changes `myvariable` at the global scope
print(myvariable) # prints 6
func()
print(myvariable) # prints 6 now because we were able
# to modify the reference in the function
换句话说,如果您使用关键字,您可以myvariable
从内部更改模块范围内的值。func
global
顺便说一句,作用域可以嵌套任意深度:
def func1():
x = 3
def func2():
print("x=",x,"func2")
y = 4
def func3():
nonlocal x # try it with nonlocal commented out as well. See the difference.
print("x=",x,"func3")
print("y=",y,"func3")
z = 5
print("z=",z,"func3")
x = 10
func3()
func2()
print("x=",x,"func1")
func1()
现在在这种情况下,没有在全局范围内声明任何变量,并且在 python2 中,没有(简单/干净)方法可以更改from withinx
范围内的值。这就是在 python3.x 中引入关键字的原因。 是它的扩展,允许您修改从另一个范围中提取的变量,无论它是从哪个范围中提取的。func1
func3
nonlocal
nonlocal
global
mgilson 做得很好,但我想补充一些。
list1 = [1]
list2 = [1]
def main():
list1.append(3)
#list1 = [9]
list2 = [222]
print list1, list2
print "before main():", list1, list2
>>> [1] [1]
main()
>>> [1,3] [222]
print list1, list2
>>> [1, 3] [1]
在函数内部,Python 假定每个变量都是局部变量,除非您将其声明为全局变量,或者您正在访问全局变量。
list1.append(2)
是可能的,因为您正在访问“list1”并且列表是可变的。
list2 = [222]
是可能的,因为您正在初始化一个局部变量。
但是,如果您取消注释 #list1 = [9],您将得到
UnboundLocalError: local variable 'list1' referenced before assignment
这意味着您正在尝试初始化一个新的局部变量“list1”,但它之前已经被引用,并且您超出了重新分配它的范围。
要进入范围,请将“list1”声明为全局。
我强烈建议你阅读这篇文章,即使最后有错字。
基本上它告诉解释器它给定的变量应该在全局级别而不是默认的本地级别进行修改或分配。
a = 1
def f():
a = 2 # doesn't affect global a, this new definition hides it in local scope
a = 1
def f():
global a
a = 2 # affects global a