Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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