Episode 2/7 | Designing GUI | Simple Typing Speed Counter using Python

Опубликовано: 09 Июль 2026
на канале: SE CS Academy
23
3

In this playlist, I will demonstrate how to build a simple typing speed counter using just Python
code :
import tkinter as tk

root = tk.Tk()
root.title("Typing Speed counter")
root.geometry("500x500") # size of window
root.resizable(True,True)

text = tk.Text(root)
text.pack()

status = tk.Label(root,text="Char: 0 | Word: 0 | Speed: 0")
status.pack()

root.mainloop() # closing of window