python tkinder电子时钟
时间: 2024-05-05 19:15:12 浏览: 146
Python+Pyqt实现简单GUI电子时钟
以下是一个简单的Python Tkinter电子时钟的示例代码:
```python
from tkinter import *
from time import strftime
root = Tk()
root.title("电子时钟")
def time():
string = strftime('%H:%M:%S %p')
lbl.config(text = string)
lbl.after(1000, time)
lbl = Label(root, font = ('calibri', 40, 'bold'),
background = 'purple',
foreground = 'white')
lbl.pack(anchor = 'center')
time()
mainloop()
```
该代码使用Tkinter创建一个窗口,标题为“电子时钟”。然后,使用strftime()函数来获取当前时间,格式为“小时:分钟:秒钟 AM/PM”。在标签(Label)小部件中显示该字符串,并使用after()方法每秒更新一次。最后,使用mainloop()函数运行GUI应用程序。
您可以根据需要更改字体,背景颜色,前景颜色和标签的大小。此代码是一个基本示例,您可以根据需要进行更改和修改。
阅读全文