随笔分类 -  python

摘要:昨天学到python的闭包,有些地方不太理解,只能通过定义上去理解 1 def one(): 2 def two(): 3 print("hello") 4 return two 如上就是一个普通的闭包 接着来一个带参数的闭包 1 def one(i): 2 print("i am "+i) 3 d 阅读全文
posted @ 2020-04-25 09:26 超小咪 阅读(134) 评论(0) 推荐(0)