文件名称:读写二进制数组数据-华为云大数据中台架构分享
文件大小:5.68MB
文件格式:PDF
更新时间:2024-07-01 05:00:33
Python cookbook 中文 参考
6.11 读写二进制数组数据
问题
你想读写一个二进制数组的结构化数据到 Python 元组中。
解决方案
可以使用 struct 模块处理二进制数据。 下面是一段示例代码将一个 Python 元
组列表写入一个二进制文件,并使用 struct 将每个元组编码为一个结构体。
from struct import Struct
def write_records(records, format, f):
'''
Write a sequence of tuples to a binary file of
structures.
'''
record_struct = Struct(format)
for r in records:
f.write(record_struct.pack(*r))
# Example
if __name__ == '__main__':
records = [ (1, 2.3, 4.5),
(6, 7.8, 9.0),
(12, 13.4, 56.7) ]
with open('data.b', 'wb') as f:
write_records(records, '