What is the line?
(什么线?)
You can just have arguments on the next line without any problems: (您只需在下一行就有参数就不会有任何问题:)
a = dostuff(blahblah1, blahblah2, blahblah3, blahblah4, blahblah5,
blahblah6, blahblah7)
Otherwise you can do something like this:
(否则,您可以执行以下操作:)
if a == True and
b == False
Check the style guide for more information.
(查看样式指南以获取更多信息。)
From your example line:
(从示例行中:)
a = '1' + '2' + '3' +
'4' + '5'
Or:
(要么:)
a = ('1' + '2' + '3' +
'4' + '5')
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.
(请注意,样式指南指出,最好使用带括号的隐式连续符,但是在这种特殊情况下,仅在表达式周围加上括号可能是错误的方法。)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…