【说站】python字节数组如何使用?
2024-12-01
53
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))
以上就是python字节数组的使用,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1个月前赞一波!1
相关文章
- 【说站】python自定义日志如何实现
- 【说站】python有哪些注释的种类
- 【说站】python中__new__的重写
- 【说站】python如何解决初始化执行次数
- 【说站】python错误类型捕获的方法
- 【说站】python数据结构堆的介绍
- 【说站】python参数调用的注意点
- 【说站】python Pandas读取数据文件的优点
- 【说站】python中in和is的区分
- 【说站】python异常中常见关键字
- 【说站】python os.path.join()函数的使用
- 【说站】python如何使用skimage包提取图像
- 【说站】python confusion_matrix()是什么
- 【说站】python中os.path.join()函数是什么
- 【说站】python中有哪些比较操作
- 【说站】php文件Hash如何使用
- 【说站】python字符串的用法总结
- 【说站】python列表数据如何增加和删除
- 【说站】python解释器的多种使用
- 【说站】python多行注释的方法整理
文章评论
评论问答