def gl():
x = 6
def gg():
nonlocal x
x = x + 1
print(x)
return gg
b = gl()
b()
执行结果如下:
<function gl..gg at 0x0000025B5AF2EAF0>
7
Process finished with exit code 0
def gl():
x = 6
def gg():
nonlocal x
x = x + 1
print(x)
return gg
b = gl()
b()
执行结果如下:
<function gl..gg at 0x0000025B5AF2EAF0>
7
Process finished with exit code 0
在gl函数中,返回的gg是一个函数,未封包,所以定义变量b,将gl函数返回值赋值给b时,实际上是将函数gg对象赋值给b,执行b()时执行函数gg内的函数
如果想直接执行gl同时执行gg,将return gg改为return gg()即可
修改后如下
def gl():
x = 6
def gg():
nonlocal x
x = x + 1
print(x)
return gg()
gl()