有没有办法用当前日期保存excel(.xls)文件? 我使用的是Python 2.7 我尝试使用以下代码,但它没有用。我正在使用导入日期时间库。
import datetime
wb.save('Name of File' + datetime.datetime.now() + '.xls')
答案 0 :(得分:0)
你可以使用
'file1'+now.strftime("%Y%m%d%H%M")+'.xls'
使用当前时间戳生成文件名并将文件保存在excel中。