我有一些图表,我在python中做.
plt.scatter(LuxCoordinates,finalPix,linewidths=1)
plt.sca
plt.grid(axis)
plt.xlabel('Ambient',color='r');
plt.ylabel('Depth Grows',color='r'); # grayscale color
plt.title(PngName,color='b');
savefig(PngName+'.png'); #PngName is the name of the file that the user gives in argv
这项工作很好,它保存了一个文件,名称PngName.png(其中PngName是用户决定的)
date = time.strftime("%d/%m/%Y")
plt.scatter(LuxCoordinates,color='b');
savefig(PngName+'_'+date+'.png')
但它不起作用,我收到此错误消息:
filename_or_obj = open(filename_or_obj,‘wb’)
IOError: [Errno 2] No such file or directory: ’05/12/2013.png’
您可以看到日期变量获取日期. (当我将它打印到屏幕上时,我看到了日期)
有什么问题,如何解决?
谢谢!
最佳答案
原文链接:https://www.f2er.com/python/439675.html