[Python-Dev] Oddity PEP 0 key
Daniel Diniz
ajaksu at gmail.com
Sat May 2 17:11:49 CEST 2009
MRAB wrote:
> Are there Unicode codepoints for smilies? I'm thinking of :-) for
> 'Accepted' and :-( for 'Rejected'. :-)
Yes there are, but we'd need to set the font size to 'humongous' to
see the smilies: ☹ ☺.
In py3k: print(chr(0x2639), chr(0x263a))
In trunk: print(unichr(0x2639), unichr(0x263a))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smilies.png
Type: image/png
Size: 3574 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/python-dev/attachments/20090502/b0c032f0/attachment.png>
More information about the Python-Dev
mailing list