s = 'aaaaaaaaaaaaaaaaa' \
+ 'bbbbbbbbbbbbbbbbbbb'
Error if there is a "+" in the head Put a "" at the end to tell it to continue on the next line.
Or
s = ('aaaaaaaaaaaaaaaaaaaaa'
+ 'bbbbbbbbbbbbbbbbbbbbbb')
x = (1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1
+ 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1)
Enclose in ().
4 spaces for indentation
Recommended Posts