Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the proper indentation for Python multiline strings within a function?

    def method():
        string = """line one
line two
line three"""

or

    def method():
        string = """line one
        line two
        line three"""

or something else?

It looks kind of weird to have the string hanging outside the function in the first example.

Thanks.

share|improve this question
1  
The example snippets are syntax errors. – Mike Graham Mar 23 '10 at 23:51
@Mike Graham: If you are referring to usage of "string" as variable name, no it is OK. You can use that without any error as "string" is just an object and can be assign something else. You can even do "True = False". – sharjeel Mar 24 '10 at 1:40
1  
@sharjeel, def method: is not Python. – Mike Graham Mar 24 '10 at 2:45
4  
@sharkell, Also, "string" isn't an object; it is a name. Before assigning it in these snippets, it wouldn't have meant anything. It is not a built-in (the string type is str). There is a module called string, but it isn't involved in this at all. – Mike Graham Mar 24 '10 at 2:47

5 Answers

up vote 77 down vote accepted

You probably want to line up with the """

def foo():
    string = """line one
             line two
             line three"""

Since the newlines and spaces are included in the string itself, you will have to postprocess it. If you don't want to do that and you have a whole lot of text, you might want to store it separately in a text file. If a text file does not work well for your application and you don't want to postprocess, I'd probably go with

def foo():
    string = ("this is an "
              "implicitly joined "
              "string")

If you want to postprocess a multiline string to trim out the parts you don't need, you should consider the textwrap module or the technique for postprocessing docstrings presented in PEP 257:

def trim(docstring):
    if not docstring:
        return ''
    # Convert tabs to spaces (following the normal Python rules)
    # and split into a list of lines:
    lines = docstring.expandtabs().splitlines()
    # Determine minimum indentation (first line doesn't count):
    indent = sys.maxint
    for line in lines[1:]:
        stripped = line.lstrip()
        if stripped:
            indent = min(indent, len(line) - len(stripped))
    # Remove indentation (first line is special):
    trimmed = [lines[0].strip()]
    if indent < sys.maxint:
        for line in lines[1:]:
            trimmed.append(line[indent:].rstrip())
    # Strip off trailing and leading blank lines:
    while trimmed and not trimmed[-1]:
        trimmed.pop()
    while trimmed and not trimmed[0]:
        trimmed.pop(0)
    # Return a single string:
    return '\n'.join(trimmed)
share|improve this answer
It's good to have the same level of indentation for each line of text in the string. But that means that the lines of text should be a single indentation level in (4 columns), not starting at some arbitrary many-columns-along position from the previous line. – bignose Mar 24 '10 at 0:06
@bignose, I do not see how that requirement helps to keep code cleaner or more readable or has any particular advantage. – Mike Graham Mar 24 '10 at 0:08
3  
This is the ‘hanging indent’ style of line continuation. It is prescribed in PEP8 for purposes like function definitions and long if statements, though not mentioned for multiline strings. Personally this is one place I refuse to follow PEP8 (and use 4-space indenting instead), as I strongly dislike hanging indents, which for me obscure the proper structure of the program. – bobince Mar 24 '10 at 12:19
1  
@buffer, in 3.1.2 of the official tutorial ("Two string literals next to each other are automatically concatenated...") and in the language reference. – Mike Graham Jun 28 '11 at 18:55
1  
The second form with automatic string concatenation doesn't include newline It's a feature. – Mike Graham Oct 27 '11 at 19:05
show 3 more comments

The textwrap.dedent function allows one to start with correct indentation in the source, and then strip it from the text before use.

The trade-off, as noted by some others, is that this is an extra function call on the literal; take this into account when deciding where to place these literals in your code.

import textwrap

def frobnicate(param):
    """ Frobnicate the scrognate param.

        The Weebly-Ruckford algorithm is employed to frobnicate
        the scrognate to within an inch of its life.

        """
    prepare_the_comfy_chair(param)
    log_message = textwrap.dedent("""\
            Prepare to frobnicate:
            Here it comes...
                Any moment now.
            And: Frobnicate!""")
    weebly(param, log_message)
    ruckford(param)

The trailing \ in the log message literal is to ensure that line break isn't in the literal; that way, the literal doesn't start with a blank line, and instead starts with the next full line.

The return value from textwrap.dedent is the input string with all common leading whitespace indentation removed on each line of the string, meaning that the above log_message value will be flush left except for the further indented third line.

share|improve this answer
1  
That's a snazzy solution right there! – jathanism Mar 24 '10 at 4:40
While this is a reasonable solution and nice to know, doing something like this inside a frequently called function could prove to be a disaster. – haridsv Oct 27 '11 at 5:45
@haridsv Why would that be a disaster? – jtmoulia Jun 5 '12 at 18:14
2  
@jtmoulia: A better description than disaster would be "inefficient" because the result of the textwrap.dedent() call is a constant value, just like its input argument. – martineau Aug 4 '12 at 1:34

I agree the 2nd one looks better, but the white space is included in the string unfortunately, so you'll end up with indents on the 2nd and 3rd line.

share|improve this answer

It depends on how you want the text to display. If you want it all to be left-aligned then either format it as in the first snippet or iterate through the lines left-trimming all the space.

share|improve this answer
4  
The way docstring-processing tools work is to remove not all the space on the left, but as much as the first indented line. This strategy is a bit more sophisticated and allows for you to indent and have it respected in the postprocessed string. – Mike Graham Mar 23 '10 at 23:59

I came here looking for a simple 1-liner to remove/correct the identation level of the docstring for printing, without making it look untidy, for example by making it "hang outside the function" within the script.

Here's what I ended up doing:

import string
def myfunction():

    """
    line 1 of docstring
    line 2 of docstring
    line 3 of docstring"""

print str(string.replace(myfunction.__doc__,'\n\t','\n'))[1:] 

Obviously, if you're indenting with spaces (e.g. 4) rather than the tab key use something like this instead:

print str(string.replace(myfunction.__doc__,'\n    ','\n'))[1:]

And you don't need to remove the first character if you like your docstrings to look like this instead:

    """line 1 of docstring
    line 2 of docstring
    line 3 of docstring"""

print string.replace(myfunction.__doc__,'\n\t','\n') 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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