Long lines
text = "abc" "def"
print(text)
other = "abcdef"
print(other)
long_string = "one" "two" "three"
print(long_string)
short_rows = "one" \
"two" \
"three"
print(short_rows)
long_string = "first row second row third row"
print(long_string)
shorter = "first row \
second row \
third row"
print(shorter)
abcdef
abcdef
onetwothree
onetwothree
first row second row third row
first row second row third row