闭包:函数中还有定义的函数,并且里面的函数要用到外面函数的参数

1 def foo(test):
2     def foo1()
3         print("hello word!")
4         print(test = test+1)
5     return foo1
6 
7 f1 = foo()

 

posted @ 2017-12-22 14:59  leeQQQ  阅读(419)  评论(0编辑  收藏  举报