如何拆分文本文件以便在GUI中显示?

时间:2016-03-13 13:50:02

标签: python tkinter

目前,文本正在一行标签上打印,但我希望它显示在多行而不是一行。

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。

1 个答案:

答案 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()