How to Create a digital clock using Python (Tkinter) ? | Python

Published: 04 December 2021
on channel: House Of Dispute*
35
1

As we know Tkinter is used to create a variety of GUI (Graphical User Interface) applications


Source Code:
from tkinter import Label, Tk
import time
app_window = Tk()
app_window.title("Digital Clock")
app_window.geometry("420x150")
app_window.resizable(1,1)

text_font= ("Boulder", 68, 'bold')
background = "#f2e750"
foreground= "#363529"
border_width = 25

label = Label(app_window, font=text_font, bg=background, fg=foreground, bd=border_width)
label.grid(row=0, column=1)

def digital_clock():
time_live = time.strftime("%H:%M:%S")
label.config(text=time_live)
label.after(200, digital_clock)

digital_clock()
app_window.mainloop()


On this page of the site you can watch the video online How to Create a digital clock using Python (Tkinter) ? | Python with a duration of hours minute second in good quality, which was uploaded by the user House Of Dispute* 04 December 2021, share the link with friends and acquaintances, this video has already been watched 35 times on youtube and it was liked by 1 viewers. Enjoy your viewing!