分类: Python/Ruby
2013-10-15 17:45:16
这个测试程序执行时间的方法真是太好了,而且非常的Pythonic。 转载自:点击(此处)折叠或打开
- import time
- class Timer:
- def __enter__(self):
- self.start = time.clock()
- return self
- def __exit__(self,*args):
- self.end = time.clock()
- self.interval = self.end-self.start
- with Timer() as t:
- dosomesuch()
- print t.interval