You can create a simple Clock using Python and in this post we use tkinter to create the GUI for our clock. Firstly download the fonts from the link here and install it in your system if you want to have the same font like in this post.
Now that you've installed the fonts, copy the following code and save it in your system. Try to run the code and your Clock will be displayed.
from tkinter import *
from tkinter.ttk 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", 50), background="black", foreground="cyan")
label.pack(anchor="center")
time()
mainloop()
Top comments (0)