vote up 7 vote down star
1

In python, if I say

print 'h'

I get the letter h and a newline. If I say

print 'h',

I get the letter h and no newline. If I say

print 'h',
print 'm',

I get the letter h, a space, and the letter m. How can I prevent Python from printing the space?

The print statements are different iterations of the same loop so I can't just use the + operator.

flag

75% accept rate

10 Answers

vote up 19 vote down check

You can use:

sys.stdout.write('h')
sys.stdout.write('m')
link|flag
vote up 19 vote down

Just a comment. In Python 3, you will use

print('h', end='')

to suppress the endline terminator, and

print('a', 'b', 'c', sep='')

to suppress the whitespace separator between items.

link|flag
You can from __future__ import print_function in Python 2.6 – J.F. Sebastian Nov 2 '08 at 18:10
vote up 3 vote down

print "%s%s%s%s" % ('a','s','d','f')

link|flag
vote up 11 vote down

Greg is right-- you can use sys.stdout.write

Perhaps, though, you should consider refactoring your algorithm to accumulate a list of <whatevers> and then

lst = ['h', 'm']
print  "".join(lst)
link|flag
vote up 1 vote down
print 'h' + 'e',

stupid python :-)

( seriously, it's a great language... but this is just stupid! )

link|flag
why stupid ? that seems logical to me :) – hayalci Nov 1 '08 at 0:25
vote up 6 vote down
Python 2.5.2 (r252:60911, Sep 27 2008, 07:03:14)
[GCC 4.3.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> print "hello",; print "there"
hello there
>>> print "hello",; sys.stdout.softspace=False; print "there"
hellothere

But really, you should use sys.stdout.write directly.

link|flag
vote up 3 vote down

For completeness, one other way is to clear the softspace value after performing the write.

import sys
print "hello",
sys.stdout.softspace=0
print "world",
print "!"

prints helloworld !

Using stdout.write() is probably more convenient for most cases though.

link|flag
vote up 1 vote down

Using the print statement without a formatting operation first is really only for very basic convenience. If you want to control the format of the output at all, then do as Dustin says: use a format string.

link|flag
vote up 0 vote down

lol

or use a '+', i.e.;

print 'me'+'no'+'likee'+'spacees'+'pls'

menolikeespaceespls

just make sure all are concatenate-able objects

link|flag
or, you can convert them: print str(me)+str(no)+str(likee)+str(spacees)+str(pls) – fengshaun Mar 20 at 19:27
vote up 2 vote down

Regain control of your console! Simply:

from __past__ import printf

where __past__.py contains:

import sys
def printf(fmt, *varargs):
    sys.stdout.write(fmt % varargs)

then:

>>> printf("Hello, world!\n")
Hello, world!
>>> printf("%d %d %d\n", 0, 1, 42)
0 1 42
>>> printf('a'); printf('b'); printf('c'); printf('\n')
abc
>>>

Bonus extra: If you don't like print >> f, ..., you can extending this caper to fprintf(f, ...).

link|flag

Your Answer

Get an OpenID
or

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