Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 385 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 385 Bytes

clock

#clock project #code starts here from tkinter import * from tkinter import *

from time import strftime

root = Tk() root.title("Clock")

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

label = Label(root, font=("ds-digital", 80), background="white", foreground="cyan") label.pack(anchor="center") time()

mainloop()