DEV Community

Wulfi
Wulfi

Posted on

5 2

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()
Enter fullscreen mode Exit fullscreen mode

The clock is shown below:
Image description

Image of Docusign

Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs