You can write multiline strings like so
x = "This is some text which we escape \
\ and unescape to keep writing"
Which prints as
"This is some text which we escape and unescape to keep writing"
If you want this to print as two lines
x = "This is some text which we escape \n\
\ and unescape to keep writing"
Which prints as
This is some text which we escape
and unescape to keep writing