words per minute
4
ArtemySenyuk
00:00
Speed
import tkinter as tk
# Create a new Tkinter window
window = tk.Tk()
# Set the window title
window.title("My App")
# Set the window dimensions
window.geometry("300x200")
# Add a label widget to the window
label = tk.Label(window, text="Hello, World!")
label.pack()
# Run the Tkinter event loop
window.mainloop()