Please hear my plea: print without softspace

Terry Reedy tjreedy at udel.edu
Sat Feb 28 15:11:58 EST 2004


"Martin Bless" <mb at muenster.de> wrote in message
news:4041796c.2181078 at news.muenster.de...
>
> Why can't we have an additional 'print' statement, that behaves
> exactly like 'print' but doesn't insert that damn blank between two
> arguments?
...
> What do you think?

For exact control of output, use file.write(string).
print is a convenient wrapper for casual output to stdout,
especially with the interactive console.
Or write your own wrapper for custom default formating.

Terry J. Reedy







More information about the Python-list mailing list