什么是全球声明?它是如何使用的?我看过Python's official definition;
但是,这对我来说没有多大意义。
答案 0 :(得分:56)
python中的每个“变量”都限于某个范围。 python“file”的范围是模块范围。请考虑以下事项:
#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
。 global
关键字是告诉python函数中的特定变量在全局(模块级)范围内定义的方式。
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中,没有(简单/干净)方法来更改x
范围内func1
的值来自func3
。这就是python3.x中引入nonlocal
关键字的原因。 nonlocal
是global
的扩展,允许您修改从另一个范围中提取的变量,无论其范围是什么。
答案 1 :(得分:1)
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'声明为全局。
我强烈建议您阅读this,即使最后有拼写错误。
答案 2 :(得分:0)
基本上它告诉解释器应该在全局级别修改或分配给定的变量,而不是默认的本地级别。
答案 3 :(得分:0)
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
答案 4 :(得分:0)