将单个位写入python中的文件

python中有没有办法写少于1个字节的数据
即使我写的数字0以1位表示,文件大小也是1(8位)字节

我尝试了struct模块

file.write(struct.pack('b',0))

阵列模组

import array
data1=array.array('B')
x=bin(0)[2:]
data1.append(int(0,2))
f2=open('/root/x.txt','wb')
data1.tofile(f2)

解决方法:

不,你不能写少于一个字节.字节是计算机可以处理的不可分割的内存量.硬件未配备处理小于1字节的数据单元(尽管字节的大小可能因机器而异).文件系统还以可能为4KB的块为单位处理数据,因此写入一位实际上会在磁盘上产生4KB的块.

另请参阅此问题的更通用版本:It is possible to write less than 1 byte to a file

上一篇:【刷题-LeetCode】191 Number of 1 Bits


下一篇:【Leetcode_easy】762. Prime Number of Set Bits in Binary Representation