nonlocal关键字 这段代码通过关键nonlocal将外部函数参数值修改: def func (): x = 20 print ( "func1" , x , id ( x )) def ifunc (): nonlocal x x = 30 print ( "ifunc" , x , id ( x )) ifunc () print ( "func2" , x , id ( x )) f
nonlocal关键字
这段代码通过关键nonlocal将外部函数参数值修改:
def func():x = 20
print("func1", x, id(x))
def ifunc():
nonlocal x
x = 30
print("ifunc", x, id(x))
ifunc()
print("func2", x, id(x))
func()
# func1 20 4342383328
# ifunc 30 4342383648
# func2 30 4342383648
通过对比这个代码发现, 外部参数和内部参数是完全不一样的只是参数名一样, 而且内部x=30并没有修改外部x的值
def func():x = 20
print("func1", x, id(x))
def ifunc():
x = 30
print("ifunc", x, id(x))
ifunc()
print("func2", x, id(x))
func()
# func1 20 4435350240
# ifunc 30 4435350560
# func2 20 4435350240
总结:
第一,两者的功能不同。global关键字修饰变量后标识该变量是全局变量,对该变量进行修改就是修改全局变量,而nonlocal关键字修饰变量后标识该变量是上一级函数中的局部变量,如果上一级函数中不存在该局部变量,nonlocal位置会发生错误(最上层的函数使用nonlocal修饰变量必定会报错)。
第二,两者使用的范围不同。global关键字可以用在任何地方,包括最上层函数中和嵌套函数中,即使之前未定义该变量,global修饰后也可以直接使用,而nonlocal关键字只能用于嵌套函数中,并且外层函数中定义了相应的局部变量,否则会发生错误