Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
February 21, 2022 07:21 am GMT

How To Make a Clock in Python With Tkinter.

`#kaveh Sabouri

from tkinter import *
from tkinter.ttk import *
from time import strftime

window = Tk()
window.title('Clock')
window.config(bg="lavender")

def time():
string = strftime('%H:%M:%S %p')
lbl.config(text=string)
lbl.after(1000, time)

lbl = Label(window, font=('Arial', 40, 'bold'),background='lavender',foreground='black')
lbl.pack(anchor='center')
time()

mainloop()

`


Original Link: https://dev.to/kavehsabouri/how-to-make-a-clock-in-python-with-tkinter-co5

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To