python 补充-decode和encode
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 补充-decode和encode相关的知识,希望对你有一定的参考价值。
1. decode与encode转码
在Python3中默认编码就是uncode,encode转成Byte类型
在Python2中默认编码就是ascii
window下默认编码是GBK
decode(告诉人家我是谁),encode(我要转成谁)
s="你好" #uncode s_uncode=s.encode("utf-8").decode("utf-8") print(s_uncode)
#uncode与utf-8的区别,uft-8节省了空间,
在ASCII英文默认是占一个字节,unicode英文是两个字节,所以出现了utf-8 ,
utf-8英文还是占一个字节,中文是占三个字节。
以上是关于python 补充-decode和encode的主要内容,如果未能解决你的问题,请参考以下文章
python报错:UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0xb4