I have this code:

>>> for i in xrange(20):
...     print 'a',
... 
a a a a a a a a a a a a a a a a a a a a

I want to output 'a', without ' ' like this:

aaaaaaaaaaaaaaaaaaaa

Is it possible?

link|improve this question

78% accept rate
I'm surprised that no-one's yet mentioned "".join("a" for i in xrange(20)). (It's much more flexible than just doing "a" * 20, as I assume it's a simplfied example). – Thomas K Dec 21 '10 at 12:59
feedback

7 Answers

up vote 15 down vote accepted

There are a number of ways of achieving your result. If you're just wanting a solution for your case, use string multiplication as @Ant mentions. This is only going to work if each of your print statements prints the same string. Note that it works for multiplication of any length string (e.g. 'foo' * 20 works).

>>> print 'a' * 20
aaaaaaaaaaaaaaaaaaaa

If you want to do this in general, build up a string and then print it once. This will consume a bit of memory for the string, but only make a single call to print. Note that string concatenation using += is now linear in the size of the string you're concatenating so this will be fast.

>>> for i in xrange(20):
...     s += 'a'
... 
>>> print s
aaaaaaaaaaaaaaaaaaaa

Or you can do it more directly using sys.stdout.write(), which print is a wrapper around. This will write only the raw string you give it, without any formatting. Note that no newline is printed even at the end of the 20 as.

>>> for i in xrange(20):
...     sys.stdout.write('a')
... 
aaaaaaaaaaaaaaaaaaaa>>> 

Python 3 changes the print statement into a print() function, which allows you to set an end parameter. You can use it in >=2.6 by importing from __future__. I'd avoid this in any serious 2.x code though, as it will be a little confusing for those who have never used 3.x. However, it should give you a taste of some of the goodness 3.x brings.

>>> from __future__ import print_function
>>> for i in xrange(20):
...     print('a', end='')
... 
aaaaaaaaaaaaaaaaaaaa>>> 
link|improve this answer
10  
So after everyone has answered, you make a summary of it and then write a new answer? How convenient. – user225312 Dec 21 '10 at 12:38
1  
@A A I read the question when the string multiplication answer was present, and thought I'd give an overview of several options. The others came while I was putting together my answer. It was accepted soon after, otherwise I would've likely deleted it. – marcog Dec 21 '10 at 12:59
3  
I have no problem with your answer, it summarizes everything and that's good. But by doing this, you discourage other people who answer. There are many good answers and all deserve +1. Just imagine if everyone started making summaries. – user225312 Dec 21 '10 at 13:03
1  
@katrielalex: Does it matter? Has the OP asked for optimization or complexity? And will it matter for 20 strings? Come on, you seriously must be joking. – user225312 Dec 21 '10 at 13:04
1  
@A A Indeed, I'm just showing he's wrong either way. – marcog Dec 21 '10 at 13:08
show 9 more comments
feedback

You can suppress the space by printing an empty string to stdout between the print statements.

>>> import sys
>>> for i in range(20):
...   print 'a',
...   sys.stdout.write('')
... 
aaaaaaaaaaaaaaaaaaaa

However, a cleaner solution is to first build the entire string you'd like to print and then output it with a single print statement.

link|improve this answer
3  
No need for the print; just sys.stdout.write('a')... – Soulseekah Dec 21 '10 at 12:20
2  
@Soulseekah: Yes, using only sys.stdout.write() is more convenient in this case. However, I wanted to show that writing an empty string to stdout suppresses the space between elements written using print, which could be useful in similar situations. – Pär Wieslander Dec 21 '10 at 12:58
that's one great tip :) – Soulseekah Dec 21 '10 at 13:02
feedback

From http://docs.python.org/whatsnew/2.6.html#pep-3105-print-as-a-function

>>> from __future__ import print_function
>>> print('a', end='')

Obviously that only works with python 2.6 or higher.

link|improve this answer
1  
This is the correct answer. – Purrell Feb 13 at 0:45
feedback

without what? do you mean

>>> print 'a' * 20
aaaaaaaaaaaaaaaaaaaa

?

link|improve this answer
feedback

Python 3.x:

for i in range(20):
    print('a', end='')

Python 2.6 or 2.7:

from __future__ import print_function
for i in xrange(20):
    print('a', end='')
link|improve this answer
feedback

You could print a backspace character ('\b'):

for i in xrange(20):
    print '\ba',

result:

aaaaaaaaaaaaaaaaaaaa
link|improve this answer
2  
This is the fun answer ;) – webwurst Apr 26 at 14:29
feedback

Either what Ant says, or accumulate into a string, then print once:

s = '';
for i in xrange(20):
    s += 'a'
print s
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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