python 编码问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 编码问题相关的知识,希望对你有一定的参考价值。
>>> a="中"
>>> a
‘xe4xb8xad‘
>>> b=a.decode()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xe4 in position 0: ordinal not in range(128)
>>> b=a.encode("utf-8")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xe4 in position 0: ordinal not in range(128)
>>> b=a.decode("utf-8")
>>> b
u‘u4e2d‘
>>> a=u"中"
>>> a
u‘u4e2d‘
怎么样才能出来中文字?
以上是关于python 编码问题的主要内容,如果未能解决你的问题,请参考以下文章