标签:python closure闭包 内部函数 python培训 python基础教程
Python的闭包和Python的内部函数
1 Python内部函数
def out(x): def inner(y): return "inner use % s" % y return inner(x) print out("jeapedu")
2 python的闭包Closure
def closure(x): def inner(y): return "closure use %s %s" % (x, y) return inner print closure("Hello ")("智普教育 www.jeapedu.com")
请注意调用closure时后有两个实参列表!
标签:python closure闭包 内部函数 python培训 python基础教程
原文地址:http://blog.csdn.net/jeapeducom/article/details/45393133