Fork me on GitHub
  2019年12月2日
摘要: # 闭包函数:定义在函数内部的函数,该函数的函数体代码包含对外部作用域(而不是全局作用域)名字的引用# def outer():# x=1# def inner():# print(x)# return inner## f=outer()# print(f) # <function outer.<l 阅读全文
posted @ 2019-12-02 19:46 OBOS 阅读(152) 评论(0) 推荐(0) 编辑
摘要: # 名称空间指的是存放名字与值绑定关系的地方# 内置名称空间(python解释器启动就有):python解释器内置的名字:max,len,print# 全局名称空间(执行python文件时生效):没有缩进的,顶着文件头写的 # 文件级别的名字# 局部名称空间(调用函数时生效,调用结束失效):函数内部 阅读全文
posted @ 2019-12-02 16:39 OBOS 阅读(129) 评论(0) 推荐(0) 编辑