我有以下代码,它可以在另一台计算机上运行 64 位,但它不适用于我的计算机并给出了休闲错误。我使用 Python 3.3 和所需的库。我无法解决问题,请帮忙。
import matplotlib.pyplot as plt
import binascii
import numpy
import struct
array = []
out = open('output.txt','wb')
a=int(input("Enter the first value:"))
b=int(input("Enter the second value:"))
with open("thefile.bin", "rb") as f:
i=0
for i in range(0, a):
byte = f.read(1)
i=0
for i in range(a,b):
byte = f.read(1)
value = struct.unpack('B', byte)[0]
array.append(value)
plt.plot(array)
plt.ylabel('Value')
plt.show()