xxxxxxxxxx
To break a long string without making it show in the terminal that you wrote it on multiple lines.
a = "This is the first part of a long string" \
"This is the second part of a long string" \
"This is the third part of a long string"
print(a)