【Python】编码格式转换 encode() 、 dencode()
encode编码--调用这个方法的对象是str类型,默认采用 UTF-8 编码,也可以手动指定其它编码格式
encode() 方法为字符串类型(str)提供的方法,用于将 str 类型转换成 bytes 类型,这个过程也称为“编码”。
# 编码 a = "门没锁" b = "hello World ! Author:张三~" logs.debug(a.encode('utf-8')) logs.debug(b.encode('GBK'))
运行结果
decode解码--调用这个方法的对象是bytes类型,默认的 UTF-8 编码,需要与编码格式一致,否则会报错
decode() 方法用于将 bytes 类型的二进制数据转换为 str 类型,这个过程也称为“解码”
# 解码 a_u = b'\xe9\x97\xa8\xe6\xb2\xa1\xe9\x94\x81' b_g = b'hello World ! Author:\xd5\xc5\xc8\xfd~' logs.debug(a_u.decode()) logs.debug(b_g.decode('gbk'))
运行结果
-------------------------------------------------------------------------------------
如果万事开头难 那请结局一定圆满 @ Phoenixy
-------------------------------------------------------------------------------------