#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()
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)