我已经使用fill()函数作为tkinter标签的textwrap的一部分,但是我想添加自己的换行符或回车符。 “ \ n”似乎不起作用。有任何想法吗?
这就是我尝试过的
from textwrap import *
text = "this is some text\nit's some cool text"
root = Tk()
Label(root, text = dedent(fill(text, 250))).pack()
mainloop()
我也尝试过使用
text = '''this is some text
it's some cool text'''
还尝试使用dedent,检查了docs,但一无所获。
有什么想法吗?