我想将df值保存到excel文件中,该文件应使用以下约定 - “ComparisonReport-(创建时的日期).xlsx”。我尝试使用bellow中的代码执行此操作但是我收到错误 - 没有这样的文件或目录:'ComparisonReport-13/06 / 2017.xlsx'...如果我放writer = pd.ExcelWriter("ComparisonReport.xlsx" )
excel文件已创建,但我需要在名称中也有日期。我还定义了变量time1 - time1 = time.strftime("%d/%m/%Y")
我尝试的代码:
writer = pd.ExcelWriter("ComparisonReport-%(s).xlsx" %(time1) )
myDF.transpose().to_excel(writer, "Results")
writer.save()
writer.close()
为什么我从上面得到错误的一些想法?