If the last token on a line is an operator or comma the statements can break into mutliple lines.
But you can also use "\" as the last character on the line, to continue on the next line.
a = 2 + \
3
# Same as:
a = 2 + 3
Both are the same!
blog comments powered by Disqus