1
2
3
4
5
6
7
8
9
import struct
file_object=open('file_path','rb')
aa=file_object.read()
print(aa)
bt=struct.unpack(len(aa)*'B',aa)
print(bt)
file_object.close()
参考文章
1
2
3
4
5
6
7
8
9
import struct
file_object=open('file_path','rb')
aa=file_object.read()
print(aa)
bt=struct.unpack(len(aa)*'B',aa)
print(bt)
file_object.close()
参考文章