Python decode()方法

来自linux中国网wiki
docker>Evan2018年3月28日 (三) 09:36的版本 →‎参考
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

Python decode()方法以 encoding 指定的编码格式解码字符串。默认编码为字符串编码

例子

In [38]: dic["温度"] = items[0][3]

In [39]: dic["温度"]
Out[39]: '17 ~ 27\xe2\x84\x83'

In [42]: print (dic["温度"].decode('utf-8'))
17 ~ 27℃

In [50]:  print (dic["天气"].decode(encoding='utf-8'))
晴

参考

Python 解码字符串 decode()方法

Python 编码字符串encode()方法