Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python make label display multiple lines

from tkinter import *

root = Tk()

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

root.mainloop()
Source by # #
 
PREVIOUS NEXT
Tagged: #python #label #display #multiple #lines
ADD COMMENT
Topic
Name
2+6 =