Formatting Code

1.11. Formatting Code#

If a single statement becomes too large, you can make it span multiple lines by either surrounding the statement with parentheses or using the line-continuation character, which is a \.

(2 +
3)
5
2 + \
3
5