李小控 发表于 2019-1-13 20:40:56

今天刚看了计时器,就写了一个计时器

import time as t


class Mytimer:
        def __init__(self):
                self.time=t.localtime()
                print('当前时间是%d-%d-%d %d:%d:%d'%(self.time,self.time,self.time,self.time,self.time,self.time))

        def start(self):
                self.begin=t.localtime()
                print('开始计时')
                print('当前时间是%d-%d-%d %d:%d:%d'%(self.begin,self.begin,self.begin,self.begin,self.begin,self.begin))

        def pause(self):
                self.end=t.localtime()
                print('计时结束')
                print('当前时间是%d-%d-%d %d:%d:%d'%(self.end,self.end,self.end,self.end,self.end,self.end))
                temp=[]
                def count(self):
                        nonlocal temp
                        for i in range(0,6):
                                result=self.end-self.begin
                                temp.append(result)       
                count(self)
                print('所经历的时间是:%d秒'%(temp*3600+temp*60+temp))



高山 发表于 2022-11-29 19:23:51

{:10_337:}

AlbertLiu66 发表于 2023-9-29 11:06:52

学习了学习了
页: [1]
查看完整版本: 今天刚看了计时器,就写了一个计时器