编写一个计时器
时间: 2023-06-21 19:21:41 浏览: 111
好的,我可以帮你编写一个简单的计时器。你可以按下开始按钮来启动计时器,按下暂停按钮来暂停计时器,按下重置按钮来重置计时器。
以下是一个示例代码:
```python
import time
from tkinter import *
class Timer:
def __init__(self, master):
self.master = master
master.title("计时器")
self.time = 0
self.running = False
self.time_label = Label(master, text="00:00:00")
self.time_label.pack()
self.start_button = Button(master, text="开始", command=self.start)
self.start_button.pack(side=LEFT)
self.pause_button = Button(master, text="暂停", command=self.pause)
self.pause_button.pack(side=LEFT)
self.reset_button = Button(master, text="重置", command=self.reset)
self.reset_button.pack(side=LEFT)
def start(self):
self.running = True
self.run_timer()
def run_timer(self):
while self.running:
hours = int(self.time / 3600)
minutes = int((self.time - hours*3600) / 60)
seconds = int(self.time - hours*3600 - minutes*60)
time_string = '{:02d}:{:02d}:{:02d}'.format(hours, minutes, seconds)
self.time_label.config(text=time_string)
time.sleep(1)
self.time += 1
def pause(self):
self.running = False
def reset(self):
self.running = False
self.time = 0
self.time_label.config(text='00:00:00')
root = Tk()
my_timer = Timer(root)
root.mainloop()
```
这是一个基本的计时器,你可以根据你的需要进行修改和定制化。
阅读全文
相关推荐
![](https://img-home.csdnimg.cn/images/20250102104920.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![application/x-rar](https://img-home.csdnimg.cn/images/20210720083606.png)
![application/x-rar](https://img-home.csdnimg.cn/images/20210720083606.png)
![text/plain](https://img-home.csdnimg.cn/images/20250102104920.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)