I have a long line of code that I want to break up among multiple lines. What do I use and what is the syntax?
For example, adding a bunch of strings,
e = 'a' + 'b' + 'c' + 'd'
and have it like this:
e = 'a' + 'b' +
'c' + 'd'
feedback
|
|
What is the line? You can just have arguments on the next line without any problems:
Otherwise you can do something like this:
Check the style guide for more information. From your example line:
Or:
Note that the style guide says that using the implicit continuation with parentheses is preferred, but in this particular case just adding parentheses around your expression is probably the wrong way to go. | |||||||||||||||||||
feedback
|
|
From Style Guide for Python Code:
| |||
|
feedback
|
|
The danger in using a backslash to end a line is that if whitespace is added after the backslash (which, of course, is very hard to see), the backslash is no longer doing what you thought it was. See Python Idioms and Anti-Idioms for more. | |||||
feedback
|
|
You can break lines in between parenthesises and braces. Additionally, you can append the backslash character
| |||
|
feedback
|
|
Put a
or
| |||
|
feedback
|
| ||||
feedback
|