vote up 2 vote down star

The question is in the title.

I'd like to do in Python what I do in this example in C:

#include <stdio.h>

int main() {
    int i;
    for (i=0; i<10; i++) printf(".");
    return 0;
}

Output:

..........

In python:

>>> for i in xrange(0,10): print '.'
.
.
.
.
.
.
.
.
.
.
>>> for i in xrange(0,10): print '.',
. . . . . . . . . .

in python print will add a '\n' or a space, how can I avoid that? Now, it's just an example. Don't tell me I can first make a string then print it. I'd like to know how to "append" strings to the stdout (I don't know if it's wordered correctly).


I know about the comma, did you read my python example?!?

flag

64% accept rate

6 Answers

vote up 8 vote down check
import sys
sys.stdout.write('.')

or

print('.'), # this will still print a space, but not a newline
link|flag
Won't the second example also print ten spaces? – Triptych Jan 29 at 21:08
@Triptych: I tried it - it does. – xtofl Jan 29 at 21:15
Yup, thanks I'll specify it. – codelogic Jan 29 at 21:30
vote up 0 vote down

Print without a space or newline:

print "text" + "\r",
link|flag
it doesn't work :O – Andrea Jan 30 at 21:27
vote up 12 vote down

Since people may come here looking for it based on the title, Python also supports printf-style substitution:

>>> strings = [ "one", "two", "three" ]
>>>
>>> for i in xrange(3):
...     print "Item %d: %s" % (i, strings[i])
...
Item 0: one
Item 1: two
Item 2: three

And, you can handily multiply string values:

>>> print "." * 10
..........
link|flag
String value multiplication is amazing. Great answer. – Nick Stinemates Jan 30 at 5:42
This is missing the point. – Andrea Jan 30 at 21:28
Indeed, it is missing the point. :) Since there was already a great answer to the question I was just elaborating on some related techniques that might prove useful. – Beau Jan 30 at 21:41
Based on the title of the question, I believe this answer is more appropriate analog to how one commonly uses printf in C/C++ – Dan Aug 1 at 1:47
This answers the title of the question, but not the body. That said, it provided me with what I was looking for. :) – ayman Oct 7 at 1:13
vote up 0 vote down

If you want 10 "."'s with a newline just at the end, you can use

print '.' * 10
link|flag
I didn't downvote you but your answer prints a newline which the OP doesn't appear to want, sys.stdout.write('.' * 10) would be better. – Robert Gamble Jan 29 at 21:33
Thanks. It's kind of irritating when people downvote without commenting why. Especially when equivalent answers are getting upvotes. – Bill the Lizard Jan 30 at 1:53
vote up 2 vote down

new (as of python3.0) print function has optional end parameter that let's you modify ending character. there's also sep for separator

link|flag
vote up 0 vote down

Try adding a comma:

print "Hi",
print "There"

Check here for more details: http://blog.code-head.com/print-without-a-new-line-or-space-in-python

link|flag

Your Answer

Get an OpenID
or

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