python 中文 str 以及 unicode区别和互相转换

时间:2021-06-06 20:14:18

看了 http://www.jianshu.com/p/53bb448fe85b# 这篇兄弟的文章, 深有感触,自己做做测试试试:

  • 加不加u是有区别的哦
    python 中文 str 以及 unicode区别和互相转换

  • unicode到string 只需要encode一下,尤其在我们读取unicode的文本,然后需要进行字符拼接的时候,本身unicode无法进行拼接
    python 中文 str 以及 unicode区别和互相转换

  • string decode之后就是unicode了
    python 中文 str 以及 unicode区别和互相转换

  • string和string, 以及 unicode和unicode 可以进行拼接

python 中文 str 以及 unicode区别和互相转换

python 中文 str 以及 unicode区别和互相转换

  • 但是string和unicode在一起就有问题了

python 中文 str 以及 unicode区别和互相转换


In [38]:

In [38]:

In [38]: a1 + b1
---------------------------------------------------------------------------
UnicodeDecodeError Traceback (most recent call last)
<ipython-input-38-ffd3f356020c> in <module>()
----> 1 a1 + b1

UnicodeDecodeError: 'ascii' codec can't decode byte 0xe5 in position 0: ordinal not in range(128)

我们该怎么办呢

In [39]: a1.decode('utf-8') + b1
Out[39]: u'\u5927\u4e2d'

In [40]:

In [40]:

In [40]: a1 + b1.encode("utf-8")
Out[40]: '\xe5\xa4\xa7\xe4\xb8\xad'

python 中文 str 以及 unicode区别和互相转换