概述
尝试用其他名称保存excel文件时出错:
这是我代码的一部分:precios_read = pd.read_excel('Precios_{}.xls'.format(auth2), sheet_name='Precios')
precios_read = precios_read.sort_values(by=['Espacio'], ascending=True)
book = load_workbook('Template_sugerencia.xlsx')
writer = pd.ExcelWriter('Template_sugerencia.xlsx', engine='openpyxl')
writer.book = book
precios_read.to_excel(writer, sheet_name='template', startcol=12, startrow=5, index=False, merge_cells = True)
Recom.to_excel(writer, sheet_name='template', startcol=0, startrow=5, index=False, merge_cells = True)
cliente = auth + '_' + ids
writer.save('{}.xls'.format(cliente))
问题出在最后一行:writer.save('{}.xls'.format(cliente))。如果我这么做writer.save文件()只有一切正常,文件已保存,但如果我添加所需文件的名称,则无法执行此操作
TypeError: save() takes exactly 1 argument (2 given)
最后
以上就是朴实太阳为你收集整理的python book.save_Writer.save文件()使用新名称python的全部内容,希望文章能够帮你解决python book.save_Writer.save文件()使用新名称python所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复