运行代码时,它显示“打印时出现打印错误”,然后单击“确定”,我得到运行时错误1004。
整个ExportAsFixedFormat块中均发生错误。该代码工作了好几个星期,现在才停止工作...非常糟糕,因为我需要代码才能工作到明天。
counts, _, _ = plt.hist(...)
plt.close() # Don't want the plot from plt.hist
for n, Y in enumerate(counts):
X = [n*.3 + x for x in range(len(Y))] # position bars next to each other
plt.bar(X, Y, 0.3)
非常感谢您的帮助