编写程序,开发一个电子时钟。
时间: 2023-12-14 13:40:09 浏览: 91
电子时钟程序
好的,电子时钟可以使用Python的Tkinter库来实现,下面是一个简单的示例代码:
```python
from tkinter import *
from time import strftime
root = Tk()
root.title("电子时钟")
def time():
string = strftime('%H:%M:%S %p')
label.config(text = string)
label.after(1000, time)
label = Label(root, font = ('calibri', 40, 'bold'), background = 'purple', foreground = 'white')
label.pack(anchor = 'center')
time()
mainloop()
```
这个程序会创建一个窗口,窗口中心有一个标签显示当前时间。程序使用了strftime函数获取当前时间,然后使用after方法每隔1秒更新一次标签内容。你可以根据自己的需要进行修改和扩展。
阅读全文