1

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?

1 Answers1

1

Try \n (newline) instead of <br>

nordmanden
  • 340
  • 1
  • 10