[issue5081] Unable to print Unicode characters in Python 3 on Windows

Martin v. Löwis report at bugs.python.org
Tue Jan 27 19:13:02 CET 2009


Martin v. Löwis <martin at v.loewis.de> added the comment:

Your 2.6 example is incorrect. Try

py> print u'\u20ac'

If you want the 3.0 equivalent of your 2.6 code: it is

py> print(r'\u20ac')
\u20ac

Closing this as "works for me".

----------
nosy: +loewis
resolution:  -> works for me
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue5081>
_______________________________________


More information about the Python-bugs-list mailing list