从Python中的二进制文件读取整数
作者:互联网
我有以下C代码片段:
#include <stdio.h>
void main(){
int a = 1308901095;
FILE *fp;
fp = fopen("file", "wb");
fwrite(&a, sizeof(int), 1, fp);
fclose(fp);
printf("Done\n");
}
这将以二进制形式在文件“ file”中写入“ a”整数.
如何在Python中读取此数字?
解决方法:
请尝试以下.
from struct import *
f = open('file', 'rb')
print unpack('<i', f.read(4))[0]
f.close()
请注意,使用’<'关于您的计算机的字节序是否为小端.
标签:binaryfiles,c-3,python 来源: https://codeday.me/bug/20191208/2090017.html