编写程序,实现电子时钟效果,要求每隔1秒获取一次当前时间,并提供一个按钮控 制电子时钟是否停止。
时间: 2024-09-13 20:04:43 浏览: 95
在Python中,我们可以使用`time`模块来实现一个简单的电子时钟功能,结合Tkinter库创建用户界面,包括一个按钮用于控制计时。以下是基本的代码示例:
```python
import tkinter as tk
from time import sleep
def get_time():
current_time = datetime.datetime.now().strftime("%H:%M:%S")
clock_label.config(text=current_time)
root.after(1000, get_time) # 每隔1秒更新时间
def stop_clock():
global running
running = False
clock_label.config(text="")
running = True
root = tk.Tk()
root.title("电子时钟")
clock_label = tk.Label(root, font=("Arial", 48), width=15, anchor="center")
clock_label.pack(pady=20)
start_button = tk.Button(root, text="开始", command=get_time)
stop_button = tk.Button(root, text="停止", command=stop_clock)
start_button.pack()
stop_button.pack()
if running:
get_time() # 初始启动时立即获取并显示时间
root.mainloop()
```
在这个程序中,我们创建了一个窗口,包含两个按钮:“开始”和“停止”。当点击“开始”按钮时,`get_time`函数会被调用,它会获取当前时间并每秒更新一次。而“停止”按钮则会在点击时将`running`变量设为`False`,停止定时任务。
阅读全文