from tkinter import * root = Tk() label_1 = Label(root, text="line 1 line2") label_1.pack() root.mainloop()