📜  Python|使用 Tkinter 创建数字时钟

📅  最后修改于: 2022-05-13 01:54:32.280000             🧑  作者: Mango

Python|使用 Tkinter 创建数字时钟

众所周知,Tkinter 用于创建各种 GUI(图形用户界面)应用程序。在本文中,我们将学习如何使用 Tkinter 创建数字时钟。

使用 Tkinter 和 time 模块中的 Label 小部件:
在下面的应用程序中,我们将使用Label 小部件,还将使用time 模块,我们将使用它来检索系统的时间。
下面是实现:

Python3
# importing whole module
from tkinter import * 
from tkinter.ttk import *
  
# importing strftime function to
# retrieve system's time
from time import strftime
  
# creating tkinter window
root = Tk()
root.title('Clock')
  
# This function is used to 
# display time on the label
def time():
    string = strftime('%H:%M:%S %p')
    lbl.config(text = string)
    lbl.after(1000, time)
  
# Styling the label widget so that clock
# will look more attractive
lbl = Label(root, font = ('calibri', 40, 'bold'),
            background = 'purple',
            foreground = 'white')
  
# Placing clock at the centre
# of the tkinter window
lbl.pack(anchor = 'center')
time()
  
mainloop()


输出: