import tkinter as tk root = tk.Tk() root.title("Hello, Tkinter!") label = tk.Label(root, text="Hello, Tkinter!") label.pack() root.mainloop()