How to print a string one char at a time, with no spaces?

Andrew Thompson andrew.thompson at ashecastle.com
Fri Oct 18 10:30:24 EDT 2002


You should find that a '\b' produces a backspace.

So instead of 
'
print pi[k],

you could write

print '\b'+pi[k],

voila. 

-----Original Message-----
From: python-list-admin at python.org [mailto:python-list-admin at python.org]
On Behalf Of Richard Bow
Sent: 18 October 2002 13:41
To: python-list at python.org
Subject: How to print a string one char at a time, with no spaces?

I'd like to write a script that appears to be calculating digits of pi
and 
spitting them out one at a time, with no spaces, such as below (pi to
1002 
digits, gotten from http://www.angio.net/pi/piquery ). It's easy to do
this 
by 

pi = str(pi)
for k in range(len(pi)):
   print pi[k],

but this prints 3 . 1 4 1 5 9 2 6 5 ...

How to print without those Python spaces (which are very nice when you
want 
them)?

Thanks,

Richard Bow


pi = 
3.1415926535897932384626433832795028841971693993751058209749445923078164
062
862089986280348253421170679821480865132823066470938446095505822317253594
081
284811174502841027019385211055596446229489549303819644288109756659334461
284
756482337867831652712019091456485669234603486104543266482133936072602491
412
737245870066063155881748815209209628292540917153643678925903600113305305
488
204665213841469519415116094330572703657595919530921861173819326117931051
185
480744623799627495673518857527248912279381830119491298336733624406566430
860
213949463952247371907021798609437027705392171762931767523846748184676694
051
320005681271452635608277857713427577896091736371787214684409012249534301
465
495853710507922796892589235420199561121290219608640344181598136297747713
099
605187072113499999983729780499510597317328160963185950244594553469083026
425
223082533446850352619311881710100031378387528865875332083814206171776691
473
035982534904287554687311595628638823537875937519577818577805321712268066
130
0192787661119590921642019893
-- 
http://mail.python.org/mailman/listinfo/python-list





More information about the Python-list mailing list