“Python decode()方法”的版本间的差异
跳到导航
跳到搜索
第17行: | 第17行: | ||
晴 | 晴 | ||
</pre> | </pre> | ||
+ | |||
+ | |||
+ | Python decode()方法 | ||
+ | 和 encode() 方法正好相反,decode() 方法用于将 bytes 类型的二进制数据转换为 str 类型,这个过程也称为“解码”。 | ||
+ | |||
+ | decode() 方法的语法格式如下: | ||
+ | |||
+ | bytes.decode([encoding="utf-8"][,errors="strict"]) | ||
+ | 该方法中各参数的含义如表 2 所示。 | ||
+ | |||
+ | |||
=参考= | =参考= | ||
+ | |||
+ | [http://c.biancheng.net/view/4305.html Python encode()和decode()方法:字符串编码转换] | ||
[http://www.runoob.com/python/att-string-decode.html Python 解码字符串 decode()方法] | [http://www.runoob.com/python/att-string-decode.html Python 解码字符串 decode()方法] | ||
[https://www.w3school.com.cn/python/ref_string_encode.asp Python 编码字符串encode()方法] | [https://www.w3school.com.cn/python/ref_string_encode.asp Python 编码字符串encode()方法] |
2021年7月11日 (日) 14:56的最新版本
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 所示。