from tkinter import * root = Tk() root.title("label") label = Label(root, text="Your Text") label.pack() #