导语:
本文主要介绍了关于python字节数组如何使用?的相关知识,希望可以帮到处于编程学习途中的小伙伴
1. bytes 和 bytearray 的元素都是 0-255 之间的整数,但是任何字符串都可以通过字符编码方案来存储。字节数组切片或对应的字节数组;字节数组可以直接显示ASCII字符。
s = 'helloèçí'
b_arr = bytes(s, 'utf_8')
print(type(b_arr))
print(type(b_arr))
for b in b_arr:
print(b, end=' ')
print()
print('element of bytes is int number', b_arr[0])
print('splice of bytes is bytes',end = ' ' )
b_arr_splice = b_arr[:1]
print(b_arr_splice)
num_b_arr = bytes([299])
2、struct模块提供了将打包的字节序列转换节序列转换成由不同类型字段组成的元组,也有一些函数用于反向转换,将元组转换成打包的字节序列。该模块可以处理bytes,bytearray和memoryview对象。
import struct
record_format = 'hd4s'
pack_bytes = struct.pack(record_format, 7 , 3.14,b'gbye')
print(type(pack_bytes))
print(pack_bytes)
with open('struct.b', 'wb') as fp:
fp.write(pack_bytes)
record_size = struct.calcsize(record_format)
with open('struct.b', 'rb') as fp:
record_bs = fp.read(record_size)
print(struct.unpack(record_format, record_bs))
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python中如何将九九乘法表输出到txt文件?09/22
- ♥ 本文带你了解Python线程11/24
- ♥ python如何从终端退出12/22
- ♥ 在python中查找列表元素的两种方法08/20
- ♥ 如何在python多线程中自定义线程类?11/28
- ♥ python PyQt 组织上下文菜单选项01/13
内容反馈