I want to append the text into QTextEdit 1 line after another, but whenever I use append(), it gives a text then new empty line then the next text. How can I rewrite the append() to make it not insert the new line into QtextEdit ?
like

line1
line2
line3

not like (with append())
line1

line2

line3