“Python decode()方法”的版本间的差异
跳到导航
跳到搜索
docker>Evan (→参考) |
小 (导入1个版本) |
2019年10月14日 (一) 13:52的版本
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')) 晴