2024-02-20 17:08:55 +01:00

10 lines
149 B
Python

import tkinter as tk
root = tk.Tk()
root.title("My Python Desktop App")
label = tk.Label(root, text="Hello, World!")
label.pack()
root.mainloop()