要在Tkinter Label中換行顯示文本,可以使用\n
來表示換行。例如:
import tkinter as tk
root = tk.Tk()
text = "This is a long text that needs to be displayed in multiple lines.\nThis is the second line of text."
label = tk.Label(root, text=text, wraplength=200)
label.pack()
root.mainloop()
在上面的例子中,我們在文本中使用\n
來表示換行,并將wraplength
屬性設置為200,這樣文本超出200像素寬度時就會自動換行顯示。