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