Python闭包Closure
来源:程序员人生 发布时间:2015-05-13 08:48:54 阅读次数:3389次
Python的闭包和Python的内部函数
1 Python内部函数
def out(x):
def inner(y):
return "inner use % s" % y
return inner(x)
print out("jeapedu")
在out里定义了1个inner函数,out的返回值是调用inner(x)的值
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里定义了函数inner,但closure的返回值是inner函数名。
请注意调用closure时后有两个实参列表!
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠