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?
|
I have this code:
I want to output
Is it possible?
| ||||
|
feedback
|
|
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
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
Or you can do it more directly using sys.stdout.write(), which
Python 3 changes the
| |||||||||||||||||||||
feedback
|
|
You can suppress the space by printing an empty string to stdout between the
However, a cleaner solution is to first build the entire string you'd like to print and then output it with a single | |||||||||||
feedback
|
|
From http://docs.python.org/whatsnew/2.6.html#pep-3105-print-as-a-function
Obviously that only works with python 2.6 or higher. | |||||
feedback
|
|
Python 3.x:
Python 2.6 or 2.7:
| |||
|
feedback
|
|
You could print a backspace character (
result:
| |||||
feedback
|
|
Either what Ant says, or accumulate into a string, then print once:
| |||
|
feedback
|
"".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