亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用 Python 將單元格范圍從 Excel 復制到另一個 Excel

使用 Python 將單元格范圍從 Excel 復制到另一個 Excel

喵喵時光機 2023-08-22 10:20:02
我想將一系列單元格從一個 Excel 文件復制到另一個文件(在將數據復制到 Excel 中找到了一個示例,并根據我的需要對其進行了修改),但收到一條錯誤消息(如下所示)。數據已復制到目標文件,但我無法保存并關閉文件。我嘗試創建、重命名并刪除 save_file,但這沒有幫助。我在這里缺少什么?import win32com.client as win32# Define the full path for the data file filedata_file = "C:/2020/data.xlsx"# Define the full path for the final output filesave_file = "C:/2020/result.xlsx"# Define the template filetemplate_file = "C:/2020/template.xlsx"# Use com to copy the files aroundexcel = win32.gencache.EnsureDispatch('Excel.Application')excel.Visible = Falseexcel.DisplayAlerts = False# Template filewb_template = excel.Workbooks.Open(template_file)# Open up the data filewb_data = excel.Workbooks.Open(data_file)# Copy from the data file (select all data in V2:V22 columns)wb_data.Worksheets("Sheet1").Range("V2:V22").Select()# Paste into the template fileexcel.Selection.Copy(Destination=wb_template.Worksheets("Sheet2").Range("C7"))# Must convert the path file object to a string for the save to workwb_template.SaveAs(str(save_file))wb_template.Close()wb_data.Close()excel.DisplayAlerts = Trueexcel.Quit()`錯誤信息:com_error                                 Traceback (most recent call last)<ipython-input-37-ffb7fd7b0160> in <module>     33      34 # Must convert the path file object to a string for the save to work---> 35 wb_template.SaveAs(str(save_file))     36      37 
查看完整描述

1 回答

?
慕容3067478

TA貢獻1773條經驗 獲得超3個贊

更改save_file = "C:/2020/result.xlsx"save_file = "C:\\2020\\result.xlsx"



查看完整回答
反對 回復 2023-08-22
  • 1 回答
  • 0 關注
  • 113 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號