In python print automatically inserts a linebreak. So for example:
print 'hello'
print 'world'
would print 'hello' and 'world' on separate lines. I know you can stop this from happening by using a trailing comma, like so:
print 'hello',
print 'world',
This prints them without the linebreak, but it does insert a space between the words. Is there any easy way to print just the quoted string, without any sort of line break or space being added in?
