Python decode()方法
跳到导航
跳到搜索
Python decode()方法以 encoding 指定的编码格式解码字符串。默认编码为字符串编码
encode() 方法为字符串类型(str)提供的方法,用于将 str 类型转换成 bytes 类型,这个过程也称为“编码”。
例子
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()方法
和 encode() 方法正好相反,decode() 方法用于将 bytes 类型的二进制数据转换为 str 类型,这个过程也称为“解码”。
decode() 方法的语法格式如下:
bytes.decode([encoding="utf-8"][,errors="strict"]) 该方法中各参数的含义如表 2 所示。