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

装饰器

时间:2018-07-16 22:18:51      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:use   start   pre   port   int   fun   time   sleep   return   

# _*_coding:utf-8_*_
# Author:len liu
import time

def bar():
# start_time=time.time()
time.sleep(1)
print(‘in the bar‘)
# stop_time=time.time()

# print(‘use time %s ‘ %use_time) #bar() -------------->

                                                #in the bar
                                                #use time 1.000830888748169



def timer(fun):
def add_use_time():
start_time=time.time()
fun()
stop_time=time.time()
print(‘use time %s ‘ %(stop_time - start_time))
return add_use_time

bar=timer(bar)
bar()
#--------------> #in the bar
          #use time 1.000830888748169

装饰器

标签:use   start   pre   port   int   fun   time   sleep   return   

原文地址:https://www.cnblogs.com/len1028/p/9320661.html

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