Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #103432
| Newsgroups | comp.lang.python |
|---|---|
| Date | 2016-02-24 00:29 -0800 |
| Message-ID | <f3992f43-eef8-4b80-ab77-c46bf02f709c@googlegroups.com> (permalink) |
| Subject | Issue26420, interactive interpreter, emojis |
| From | wxjmfauth@gmail.com |
Cut and copy of a msg on my interactive interpreter:
Python 3.2.5 (default, May 15 2013, 23:06:03) [MSC v.1500 32 bit (Intel)] on win32
>>> eta runs etazero.py...
...etazero has been executed
>>> s = """P.S.
... 𠮷 is explained as U+20BB7 in UCS-4. And the characters that is
... explaind as U+1F444(👄) and U+1F468(👨) are both what are said
... emojis(explains the mouth and man)"""
>>>
>>> print(s)
P.S.
𠮷 is explained as U+20BB7 in UCS-4. And the characters that is
explaind as U+1F444(👄) and U+1F468(👨) are both what are said
emojis(explains the mouth and man)
>>> # entering chars from the kbd (!)
>>> "𠮷👄👨"
'𠮷👄👨'
>>> ascii("𠮷👄👨")
"'\\U00020bb7\\U0001f444\\U0001f468'"
>>>
I have to recognize, I'm a little bit sad. This kind
of software will live for some time on a few platforms
and then it will die.
That's life...
(With the hope everything is rendered correctly)
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Issue26420, interactive interpreter, emojis wxjmfauth@gmail.com - 2016-02-24 00:29 -0800 Re: Issue26420, interactive interpreter, emojis wxjmfauth@gmail.com - 2016-02-24 00:31 -0800
csiph-web