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

把函数当作参数传给高阶函数

时间:2016-12-08 11:38:04      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:总结   tmm   应用   pre   print   port   需要   执行   功能   


#高阶函数应用1:把函数当作参数传给高阶函数

import time
def foo():
print(‘form the foo‘)
def tmmer(func):
start_time=time.time()
func()
stop_time=time.time()
print(‘函数%s 运行时间是%s‘ %(func,stop_time-start_time))
tmmer(foo)

#总结:我们确实为函数foo增加了foo运行时间的功能,但是foo原来的执行方式是foo(),现在我们需要
调用高阶函数timmer(foo),改变函数的调用方式

把函数当作参数传给高阶函数

标签:总结   tmm   应用   pre   print   port   需要   执行   功能   

原文地址:http://www.cnblogs.com/huangjinshan/p/6144223.html

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