Python Make Label Afficher plusieurs lignes

from tkinter import *

root = Tk()

label_1 = Label(root, text="line 1 \nline2")
label_1.pack()

root.mainloop()
Hello There