how to make label in python multiple lines code example
Example: python make label display multiple lines
from tkinter import *
root = Tk()
label_1 = Label(root, text="line 1 \nline2")
label_1.pack()
root.mainloop()
from tkinter import *
root = Tk()
label_1 = Label(root, text="line 1 \nline2")
label_1.pack()
root.mainloop()