kj wrote:

=A0 x =3D '%s' % y
=A0 x =3D '%s' % z
=A0 print y
=A0 print z
=A0 print y, z

    Bear in mind that most Python implementations assume the "console"
only handles ASCII.  So "print" output is converted to ASCII, which
can fail. (Actually, all modern Windows and Linux systems support
Unicode consoles, but Python somehow doesn't get this.)

                                John Nagle
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to