标签:return this one turn int 输出 ret his pytho
def fun2(fun1):
def fun3():
print(‘i am pythoner!!! ‘)
return fun1()
return fun3
@fun2
def fun1():
print(‘this is fun1‘)
return 666
fun1()
输出:
i am pythoner!!!
this is fun1
标签:return this one turn int 输出 ret his pytho
原文地址:http://www.cnblogs.com/yum777/p/6771403.html