python中bytes与bytearray以及encode与decode

Posted 远洪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中bytes与bytearray以及encode与decode相关的知识,希望对你有一定的参考价值。

一、encode与decode

1、bytes主要是给在计算机看的,string主要是给人看的

2、中间有个桥梁就是编码规则,现在大趋势是utf8

3、bytes对象是二进制,很容易转换成16进制,例如x64

4、string就是我们看到的内容,例如‘abc‘

5、string经过编码encode,转化成二进制对象,给计算机识别

6、bytes经过反编码decode,转化成string,让我们看,但是注意反编码的编码规则是有范围,xc8就不是utf8识别的范围

例如encode使用:

"哈哈哈".encode("utf-8")    //执行结果为:bxe5x93x88xe5x93x88xe5x93x88
"哈哈哈".encode("gbk")   //执行结果为bxb9xfexb9xfexb9xfe

例如decode使用:

bxe5x93x88xe5x93x88xe5x93x88.decode("utf-8")   //执行结果为:哈哈哈
bxb9xfexb9xfexb9xfe.decode("gbk")     //执行结果为:哈哈哈
>>> "哈哈哈".encode("utf-8")
bxe5x93x88xe5x93x88xe5x93x88
>>> "哈哈哈".encode("gbk")
bxb9xfexb9xfexb9xfe
>>> bxe5x93x88xe5x93x88xe5x93x88.decode("utf-8")
哈哈哈
>>> bxb9xfexb9xfexb9xfe.decode("gbk")
哈哈哈

二、bytes 与 bytearray

bytes 函数返回一个新的 bytes 对象,该对象是一个 0 <= x < 256 区间内的整数不可变序列。它是 bytearray 的不可变版本。

#将数字转换为字节对象
bytes(1)     //转换后的值为:bx00
#获取12个0填充的byte字节对象
bytes(12)       //值为:bx00x00x00x00x00x00x00x00x00x00x00x00
#将数字数组转换为字节对象
bytes([1,2,3])   //值为:bx01x02x03
#将字符串转换为字节对象
bytes("哈哈哈","utf-8")   //值为:bxe5x93x88xe5x93x88xe5x93x88
#将字符串转换为字节对象
bytes("哈哈哈","utf-8")  //值为:bxb9xfexb9xfexb9xfe
>>> bytes(1)
bx00
>>> bytes(12)
bx00x00x00x00x00x00x00x00x00x00x00x00
>>> bytes([1,2,3])
bx01x02x03
>>> bytes("哈哈哈","utf-8")
bxe5x93x88xe5x93x88xe5x93x88
>>> bytes("哈哈哈","gbk")
bxb9xfexb9xfexb9xfe

bytearray() 方法返回一个新字节数组。这个数组里的元素是可变的,并且每个元素的值范围: 0 <= x < 256。

#将数字转换为字节数组对象
bytearray(1)     //转换后的值为:bytearray(bx00)
#获取12个0填充的byte字节数组对象
bytearray(12)       //值为:bytearray(bx00x00x00x00x00x00x00x00x00x00x00x00)
#将数字数组转换为字节数组对象
bytearray([1,2,3]   //值为:bytearray(bx01x02x03)
#将字符串转换为字节数组对象
bytearray("哈哈哈","utf-8")   //值为:bytearray(bxe5x93x88xe5x93x88xe5x93x88)
#将字符串转换为字节数组对象
bytearray("哈哈哈","gbk")  //值为:bytearray(bxb9xfexb9xfexb9xfe)
>>> bytearray(1)
bytearray(bx00)
>>> bytearray(12)
bytearray(bx00x00x00x00x00x00x00x00x00x00x00x00)
>>> bytearray([1,2,3])
bytearray(bx01x02x03)
>>> bytearray("哈哈哈","utf-8")
bytearray(bxe5x93x88xe5x93x88xe5x93x88)
>>> bytearray("哈哈哈","gbk")
bytearray(bxb9xfexb9xfexb9xfe)

 

以上是关于python中bytes与bytearray以及encode与decode的主要内容,如果未能解决你的问题,请参考以下文章

Python 序列 - bytes 和 bytearray

请教Python3 bytearray 的问题

python-bytes-bytearray

bytes和bytearray

bytes, bytearray, 切片, 封装,解构,set,dict知识总结

python string类型 bytes类型 bytearray类型