Please hear my plea: print without softspace

Paul Rubin http
Sat Feb 28 14:18:51 EST 2004


"Carmine Noviello" <cnoviello at hotmail.com> writes:
> def pprint(*args):
>     txt = ""
>     for a in args:
>        txt += str(a)
>     print txt
> 
> Is it ok?

import sys
def pprint(*args):
   for a in args:
     sys.stdout.write(a)



More information about the Python-list mailing list