Chinaunix首页 | 论坛 | 博客
  • 博客访问: 115391
  • 博文数量: 15
  • 博客积分: 152
  • 博客等级: 入伍新兵
  • 技术积分: 255
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-29 17:10
文章分类

全部博文(15)

文章存档

2017年(1)

2015年(1)

2013年(8)

2012年(5)

分类: Python/Ruby

2013-10-15 17:45:16


点击(此处)折叠或打开

  1. import time
  2. class Timer:
  3.     def __enter__(self):
  4.         self.start = time.clock()
  5.         return self
  6.     def __exit__(self,*args):
  7.         self.end = time.clock()
  8.         self.interval = self.end-self.start
  9. with Timer() as t:
  10.     dosomesuch()
  11. print t.interval
这个测试程序执行时间的方法真是太好了,而且非常的Pythonic。 转载自:
阅读(1532) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~