发布时间:2019-09-21 11:00:14编辑:auto阅读(2135)
from functools import partial
i = 0
f = open('lgtm-monitor.dat', 'rb')
f2 = open('f.txt', 'w')
records = iter(partial(f.read, 2), b'') # 每次2字节
for r in records:
j = 0
r_int = int.from_bytes(r, byteorder='big') #将 byte转化为 int
i += 1
print('i={0}:{1}'.format(i, r_int))
f2.write(str(r_int)+' ')
if 8==i:
f2.write('\n')
i = 0
break
f.close()
f2.close()
二进制文件使用 read( size)
with open('lgtm-monitor.dat', 'rb') as fp:
data = fp.read(2) #type(data) === bytes
text = int.from_bytes(data, byteorder='big')
fp.close()
上一篇: 用Python将一个列表分割成小列表
下一篇: MAC上打包python
48713
47736
38519
35717
30157
26895
25916
20768
20527
18924
316°
380°
420°
429°
418°
425°
469°
535°
657°
662°