读写字节数据-python cookbook(第3版)高清中文完整版

时间:2024-06-29 23:06:06
【文件属性】:

文件名称:读写字节数据-python cookbook(第3版)高清中文完整版

文件大小:4.84MB

文件格式:PDF

更新时间:2024-06-29 23:06:06

python cookbook 第3版 高清 中文完整版

5.4 读写字节数据 问题 你想读写二进制文件,比如图片,声音文件等等。 解决方案 使用模式为 rb 或 wb 的 open() 函数来读取或写入二进制数据。比如: # Read the entire file as a single byte string with open('somefile.bin', 'rb') as f: data = f.read() # Write binary data to a file with open('somefile.bin', 'wb') as f: f.write(b'Hello World') 在读取二进制数据时,需要指明的是所有返回的数据都是字节字符串格式的,而不是文本 字符串。 类似的,在写入的时候,必须保证参数是以字节形式对外暴露数据的对象(比如 字节字符串,字节数组对象等)。 讨论


网友评论