up vote 50 down vote favorite
10
share [g+] share [fb]

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'
link|improve this question

Style guide is just a guide. Do it however you prefer to do it. – gbsmith Dec 13 '09 at 14:19
Though of course it looks better with parentheses than with backslashes. (Personally, on a german keyboard, parens are lots easier to type... ;-)) – Jürgen A. Erhard Jan 13 '10 at 19:27
feedback

6 Answers

up vote 60 down vote accepted

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.

link|improve this answer
4  
Actually, you have the style guide's preference exactly backwards. Implicit continuation is preferred, explicit backslash is to be used only if necessary. – Carl Meyer Sep 11 '08 at 19:00
I think it's saying that if you have brackets around an expression already, use those, but don't put brackets around an expression just for the purpose of breaking it over multiple lines. No hard-and-fast rule though. I do think for the line in the question though, a backslash is the way to go. – Harley Holcombe Sep 11 '08 at 22:59
1  
Carl: I disagree, this is from the guide: The preferred way of wrapping long lines is by using Python's implied line continuation inside parentheses, brackets and braces. If necessary, you can add an extra pair of parentheses around an expression, but sometimes using a backslash looks better. – Jerub Sep 22 '08 at 2:33
1  
The thing is, in this case there are no parentheses required. Sure, you can have them, but why would you put them around the example in the question? Either way, I'll edit my answer slightly to clarify. – Harley Holcombe Oct 10 '08 at 1:08
2  
The key part of the style guide quote is "If necessary, you can add an extra pair of parentheses around an expression, but sometimes using a backslash looks better." The style guide is not saying that you should add parentheses, it leaves it to the judgement of the writer. – Tony Meyer Nov 13 '08 at 22:49
show 2 more comments
feedback

@Harley

From Style Guide for Python Code:

The preferred way of wrapping long lines is by using Python's implied line continuation inside parentheses, brackets and braces. If necessary, you can add an extra pair of parentheses around an expression, but sometimes using a backslash looks better. Make sure to indent the continued line appropriately. The preferred place to break around a binary operator is after the operator, not before it. Some examples:

class Rectangle(Blob):

    def __init__(self, width, height,
                 color='black', emphasis=None, highlight=0):
        if width == 0 and height == 0 and \
           color == 'red' and emphasis == 'strong' or \
           highlight > 100:
            raise ValueError("sorry, you lose")
        if width == 0 and height == 0 and (color == 'red' or
                                           emphasis is None):
            raise ValueError("I don't think so -- values are %s, %s" %
                             (width, height))
        Blob.__init__(self, width, height,
                      color, emphasis, highlight)
link|improve this answer
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.

link|improve this answer
This is one reason that it's nice to be able to see trailing whitespace better; i.e. something like set list listchars=trail:· in vim. :) – Beau Feb 1 '11 at 19:07
Yes, this has happened to me, very annoying – DutrowLLC Aug 7 '11 at 20:43
feedback

You can break lines in between parenthesises and braces. Additionally, you can append the backslash character \ to a line to explicitly break it:

x = (tuples_first_value,
     second_value)
y = 1 + \
    2
link|improve this answer
feedback

Put a \ at the end of your line or enclose the statement in parens ( .. ). From IBM:

b = ((i1 < 20) and
     (i2 < 30) and
     (i3 < 40))

or

b = (i1 < 20) and \
    (i2 < 30) and \
    (i3 < 40)
link|improve this answer
feedback

From the horse's mouth: Explicit line joining

Two or more physical lines may be joined into logical lines using backslash characters (\), as follows: when a physical line ends in a backslash that is not part of a string literal or comment, it is joined with the following forming a single logical line, deleting the backslash and the following end-of-line character. For example:

if 1900 < year < 2100 and 1 <= month <= 12 \
   and 1 <= day <= 31 and 0 <= hour < 24 \
   and 0 <= minute < 60 and 0 <= second < 60:   # Looks like a valid date
        return 1

A line ending in a backslash cannot carry a comment. A backslash does not continue a comment. A backslash does not continue a token except for string literals (i.e., tokens other than string literals cannot be split across physical lines using a backslash). A backslash is illegal elsewhere on a line outside a string literal.

link|improve this answer
-1 because the example is unidiomatic IMO. Compound conditionals can absolutely have enclosing brackets instead, which is more practical (for editing or automatic rewrapping) and idiomatic. – kaizer.se Dec 8 '09 at 18:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.