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.