vote up -1 vote down star

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?

flag

Which version? Python 3.0 changes this dramatically. – S.Lott Feb 10 at 12:18
This is a duplicate of stackoverflow.com/questions/255147/… – Blair Conrad Feb 10 at 12:18
@S.Lott: since he's using print as a statement and not a function, I'd say it's 2.X – Branan Feb 10 at 18:02

closed as exact duplicate by Blair Conrad, Triptych, S.Lott, ΤΖΩΤΖΙΟΥ Feb 10 at 22:49

5 Answers

vote up 6 vote down check
import sys
sys.stdout.write("Hello")
sys.stdout.write("World")

prints

HelloWorld
link|flag
vote up 10 vote down
print "%s%s" % ('hello', 'world')
# or...
print 'hello' + 'world'

You can also print directly to stdout:

import sys
sys.stdout.write('Hello' + 'World')
# or...
echo = sys.stdout.write
echo('Hello' + 'World')
link|flag
vote up 2 vote down

in python3 print function has two keyword arguments: sep and end. so you can do something like that:

>>> print('Hello', 'world', sep='')         # end here would refer to the last character of concatenated string
Helloworld
link|flag
vote up 1 vote down

You can use

sys.stdout.write("hello")
sys.stdout.write("world")
link|flag
vote up 0 vote down

Pre-Python3 you can leave a trailing comma on your print statement to suppress the automatic newline.

print 'this',
print 'that'

gives:

this that
link|flag

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