DEV Community

Kaveh Sabouri
Kaveh Sabouri

Posted on • Edited on

2 2

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()


Enter fullscreen mode Exit fullscreen mode

Top comments (0)

👋 Kindness is contagious

Dive into this insightful write-up, celebrated within the collaborative DEV Community. Developers at any stage are invited to contribute and elevate our shared skills.

A simple "thank you" can boost someone’s spirits—leave your kudos in the comments!

On DEV, exchanging ideas fuels progress and deepens our connections. If this post helped you, a brief note of thanks goes a long way.

Okay