from tkinter import * root = Tk() myLabel = Label(root, text = "Any text") myLabel.pack() root.mainloop()