概述
import time as t
class Mytimer():
def __init__(self):
self.prompt='未开始计时!'
self.unit=['年','月','日','时','分','秒']
self.begin= 0
self.stop= 0
self.lasted=[]
def __str__(self):
return self.prompt
__repr__ = __str__
def start(self):
self.begin=t.localtime()
self.prompt='请先用stop停止计时'
print('计时开始!')
def end(self):
if not self.begin:
print('请先点击开始计时!')
else:
self.stop = t.localtime()
self._jishi()
print('计时结束')
def _jishi(self):
self.lasted=[]
self.prompt='总共运行了'
for index in range(6):
self.lasted.append(self.stop[index]-self.begin[index])
if self.lasted[index]:
self.prompt+= str(self.lasted[index])+ self.unit[index]
最后
以上就是寒冷菠萝为你收集整理的计时器初级版的全部内容,希望文章能够帮你解决计时器初级版所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复