44 [SEVERE] at org.python.core.imp.import_first(imp.java:750)20:50:44 [SEVERE] at org.python.core.imp.importName(imp.java:884)
20:50:44 [SEVERE]20:50:44 [
我在Python 2.7.10的“窄”版本中有一个Unicode字符串,其中包含一个Unicode字符。我尝试使用该Unicode字符作为字典中的查找,但当我为字符串建立索引以获取最后一个Unicode字符时,它返回一个不同的字符串: >>> s = u'Python is fun \U0001f44d'>>> s[-1]
u'\udc4d' 为什么会发生这种情况,以及如何从字符串中检索'\U0001f44d'?