Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 28, 2022 12:21 pm GMT

Create a Clock using Python

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

The clock is shown below:
Image description


Original Link: https://dev.to/wulfi/create-a-clock-using-python-1g6k

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