|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
关于闭包,个人理解如下:
一、
>>> def fun1():
x = 5
def fun2():
y = x + 6
return y
return fun2
>>> print(fun1()())
11
>>> print(fun1())
<function fun1.<locals>.fun2 at 0x016D3300>
>>> print(type(fun1()))
<class 'function'>
二、
>>> def fun1():
x=5
def fun2():
y= x+6
return y
return fun2()
>>> print(fun1())
11
>>>
>>> print(fun1()())
Traceback (most recent call last):
File "<pyshell#21>", line 1, in <module>
print(fun1()())
TypeError: 'int' object is not callable
>>> print(type(fun1()))
<class 'int'>
1、return中,fun2带括号是把返回值赋值给事件,不带括号的是把函数体所在地址位置赋值给事件,即fun1()返回的是fun1函数中定义的fun2函数的地址,即它是一个函数
2、fun2()函数可以查看fun1函数中定义的变量值或者其他函数,但是不能修改,如果想要修改,必须使用nonlocal关键字 |
评分
-
查看全部评分
|