python: easygui 有没有可以换行的功能?

python: is there any function that allows you to start a new line in easygui?

如果我希望输出完全是字符串,是否有一个函数的工作方式类似于 html 中的 < br > 或 < /br >?

例如:

"hello <br> my <br> friend"

将输出为:

hello
my
friend

但对于 python 中的 easygui?

尝试使用 \n(换行符)而不是 <br>