码迷,mamicode.com
首页 > 其他好文 > 详细

装饰器之功能函数参数

时间:2019-09-21 13:03:41      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:show   闭包函数   %s   参数   return   img   inner   turn   ima   

技术图片

 

 

 

功能函数foo()没有参数

import time
def show_time(func):
def inner(a,b): #inner是个闭包函数
start = time.time ()
func(a,b)
end = time.time ()
print (‘spend %s‘%(end-start))
return inner
@show_time # foo=show_time(foo)
def foo(x,y):
print(x+y)
time.sleep(1)
foo(1,2)
功能函数foo()有两个参数,修改闭包函数inner参数,调用foo()函数。

装饰器之功能函数参数

标签:show   闭包函数   %s   参数   return   img   inner   turn   ima   

原文地址:https://www.cnblogs.com/zd37/p/11562162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!