from tkinter import * root = Tk() root.title("Hello World") message_label = Label(root, text="Hello World") message_label.pack() root.mainloop()