Python装饰器 计时器记录方法执行性能

import time

def timeit(func):

  def wrapper():

    start = time.clock()

    func() end =time.clock()

    print 'used:', end - start

    return wrapper

@timeit

def foo():

  print 'in foo()' foo()

 

posted @ 2017-05-16 16:11  AmilyAmily  阅读(1314)  评论(0编辑  收藏  举报