3
>>> s='未作評級'
>>> s
'\xe6\x9c\xaa\xe4\xbd\x9c\xe8\xa9\x95\xe7\xb4\x9a'
>>> s = unicode(s)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe6 in position 0: ordinal not in range(128)

我将如何未作評級进入uniciode?

4

1 回答 1

6

从一开始就使用 Unicode 字符串:

>>> s = u'未作評級'

或从其当前编码(似乎是 UTF-8)解码字符串。然后你得到一个 Unicode 字符串。

>>> s = '未作評級'.decode("utf-8")
于 2013-07-25T19:47:20.243 回答