How can I do a line break (line continuation) in Python?

What is the line? You can just have arguments on the next line without any problems: Otherwise you can do something like this: or with explicit line break: Check the style guide for more information. Using parentheses, your example can be written over multiple lines: The same effect can be obtained using explicit line break: Note that … Read more