摘要: 函数的闭包 1. 函数的嵌套调用 def func(): print(123) def func2(): func() print(234) func2() 2. 函数的嵌套定义 def func(): print(123) def func2(): print(234) func2() # 只能在 阅读全文
posted @ 2018-11-25 10:00 chitalu 阅读(169) 评论(0) 推荐(0) 编辑