Python here document without newlines at top and bottom

Question:

What’s the best way to have a here document, without newlines at the top and bottom? For example:

print '''
dog
cat
'''

will have newlines at the top and bottom, and to get rid of them I have to do this:

print '''dog
cat'''

which I find to be much less readable.

Asked By: Juan

||

Answers:

You could use strip():

print '''
dog
cat
'''.strip()
Answered By: NPE

Do you actually need the multi-line syntax? Why not just emded a newline?

I find print “dogncat” far more readable than either.

Answered By: Tyler Eaves

use parentheses:

print (
'''dog
cat'''
)

Use str.strip()

print '''
dog
cat
'''.strip()

use str.join()

print 'n'.join((
    'dog',
    'cat',
    ))

How about this?

print '''
dog
cat
'''[1:-1]

Or so long as there’s no indentation on the first line or trailing space on the last:

print '''
dog
cat
'''.strip()

Or even, if you don’t mind a bit more clutter before and after your string in exchange for being able to nicely indent it:

from textwrap import dedent

...

print dedent('''
    dog
    cat
    rabbit
    fox
''').strip()
Answered By: Weeble

Add backslash at the end of unwanted lines:

 text = '''
 cat
 dog
 '''

It is somewhat more readable.

Answered By: user2622016

Use a backslash at the start of the first line to avoid the first newline, and use the "end" modifier at the end to avoid the last:

    print ('''
    dog
    cat
    ''', end='')
Answered By: NorthernDean
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.