joshua robbins
joshua robbins

Reputation: 51

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

if I wanted an output to be completely string, is there a function that works in a similar way to < br > or < /br > does in html?

for example:

"hello <br> my <br> friend"

would be output as:

hello
my
friend

but for easygui in python?

Upvotes: 1

Views: 79

Answers (1)

nordmanden
nordmanden

Reputation: 340

Try \n (newline) instead of <br>

Upvotes: 1

Related Questions