from tkinter import * rootWin = Tk() myLabel = Label(rootWin, text="Hello, World!") myLabel.pack() # VS rootWin.title("In the title bar!") rootWin.mainloop()