[Python-3000] print() parameters in py3k

Greg Ewing greg.ewing at canterbury.ac.nz
Tue Nov 21 01:23:45 CET 2006


Giovanni Bajo wrote:

> println(x,y,z) -> append "\n"
> print(x,y,z) -> no terminator
> print(x,y,z,"\r\n") -> custom terminator

The third one won't work, because you'll get a
space before the terminator.

--
Greg


More information about the Python-3000 mailing list