scoping作用域,anonymous function匿名函数,内置函数
摘要:
作用域练习1 def test1(): print('in the test1') def test(): print('in the test') return test1 res = test() print(res()) #res = test1地址 函数没有return,默认返回None 作 阅读全文
posted @ 2019-02-18 20:44 yukun093 阅读(190) 评论(0) 推荐(0) 编辑