利用Python编写程序获取一个能显示实时时间的世界时钟并对程序的每一步加以注释
导入必要的库
import tkinter as tk import time
定义主窗口
root = tk.Tk() root.title("World Clock")
创建标签
label = tk.Label(root, font=("Helvetica", 48), fg="black") label.pack(pady=20)
定义函数:获取当前时间并更新标签
def update_time(): current_time = time.strftime('%H:%M:%S %Z', time.gmtime()) label.config(text=current_time) root.after(1000, update_time) # 每隔1秒更新一次
运行程序
update_time() root.mainloop()
原文地址: https://www.cveoy.top/t/topic/bjTI 著作权归作者所有。请勿转载和采集!