Forwarded: a comment on the 3.0 What's New.
--amk
--- Begin Message ---
Hi,
In the What's New in Python 3 document you say
For example, in Python 2.x, print "A\n", "B\n" would write "A\nB\n";
but in Python 3.0, print("A\n", "B\n") writes "A\n B\n".
I would be tempted to change this to:
For example, in Python 2.x, print "A\n", "B\n" would write "A\nB\n\n";
but in Python 3.0, print("A\n", "B\n") writes "A\n B\n\n".
Python 3's print() has keyword arguments to control what's
output between items and what is output at the end, for example,
print("A\n", "B\n", sep="", end="") writes "A\nB\n".
--
Mark Summerfield, Qtrac Ltd., www.qtrac.eu
--- End Message ---
_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe:
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com