14.Python-计时器

1.

#创建一个计时器

import time as t
class MyTimer():
     #开始计时
     def star(self):
          self.star=t.localtime()
          print("计时开始")
     #结束计时
     def stop (self):
          self.stop=t.localtime()
          print("计时结束")
          self.__calc()
     #内部方法,获取两个时间求时间差
     def __calc(self):
          self.lasted=[]
          self.prompt='总共运行了'
          for index  in  range(6):#年月日时分秒是放在同一元祖里面的,索引号0-5分别与之对应
               self.lasted.append(self.stop[index]-self.star[index])
               self.prompt+=str(self.lasted[index])
          print(self.prompt)

2.

>>> t1=MyTimer()
>>> t1.star()
计时开始
>>> t1.stop()
计时结束

总共运行了000004
>>> 

3.

你可能感兴趣的:(python)