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?
Try \n
(newline) instead of <br>