返回顶部
摘要: 1、闭包 (1)在嵌套函数内使用(非本层变量)和非全局变量就是闭包 (2)使用__ closure__ 判断是不是闭包 def func(): a = 1 def foo(): print(a) print(foo.__closure__) # 判断是不是闭包 (<cell at 0x000002B 阅读全文
posted @ 2019-09-02 10:16 永亮 阅读(328) 评论(0) 推荐(0) 编辑