目前,文本正在一行标签上打印,但我希望它显示在多行而不是一行。
Service
所以它当前显示在一行,例如Service
。
def display():
plain_text="" # this is the text file
display=Label(top1,text=(plain_text),bg="black", foreground="white")
display.pack()
是一长串文字,所以我无法手动添加换行符。它由用户加载,之前不知道文本。
这是一个tkinter GUI。
答案 0 :(得分:0)
您的文本变量中需要换行符\n
才能在标签上显示多行。
def display():
plain_text="this text\nwill be on a\nmultiple lines!"
display=Label(top1,text=plain_text,bg="black", foreground="white")
display.pack()