python - 如何用openpyxl在現(xiàn)有的excel文件中寫入數(shù)據(jù)
問題描述
openpyxl文檔里面有介紹把數(shù)據(jù)寫入單個單元格,和逐行寫入數(shù)據(jù)。但是沒有介紹怎么批量把數(shù)據(jù)寫入指定的行或列。想請大神指點一下。
比如我想在第二行這里批量寫入10行新的數(shù)據(jù)(格式和原表格一樣),原有的數(shù)據(jù)往后面排,或者D列寫入一列數(shù)據(jù)。
問題解答
回答1:pandas讀到dataframe里面,再改變dataframe,寫入到excel中,代碼最簡單
回答2:樓上的方法挺好,就是安裝pandas比較麻煩,新手可能不太好搞定,我倒是有個笨方法
from win32com.client import Dispatch import win32com.clientclass MyExcel: def __init__(self, filename=None): # 打開文件或者新建文件(如果不存在的話)self.xlApp = win32com.client.Dispatch(’Excel.Application’)if filename: self.filename = filename self.xlBook = self.xlApp.Workbooks.Open(filename)else: self.xlBook = self.xlApp.Workbooks.Add() self.filename = ’’ def save(self, newfilename=None): # 保存文件if newfilename: self.filename = newfilename self.xlBook.SaveAs(newfilename)else: self.xlBook.Save() def close(self): # 關(guān)閉文件self.xlBook.Close(SaveChanges=0)del self.xlApp def inserRow(self, sheetname, row):sht = self.xlBook.Worksheets(sheetname)sht.Rows(row).Insert()if __name__ == '__main__': xls = MyExcel(r’d:jason.liDesktopempty_book.xlsx’) xls.inserRow(’sheet1’,6) xls.save() xls.close()
如果嫌麻煩,可以使用繼承,重寫類的方法。我就提供一個實現(xiàn)的小思路,效率比較低,也可以修改一下代碼,一次插入多行,用win32com操作Excel很方便,怎么需要怎么寫。
相關(guān)文章:
1. 運行python程序時出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯誤?2. 小白學(xué)python的問題 關(guān)于%d和%s的區(qū)別3. macos - 無法source activate python274. javascript - npm run build后調(diào)用api返回index.html5. android - 如何實現(xiàn)QQ pad 點擊右側(cè)輸入框,只頂右側(cè)的布局,左側(cè)布局不動6. css3 - css怎么做出這樣的效果?7. html5 - 前端面試碰到了一個緩存數(shù)據(jù)的問題,來論壇上請教一下8. github - 求助大神啊,win10 git clone error,折騰了幾天都不行,以前原本好好的,突然就這樣了9. html - vue里面:src在IE(9-11)下不顯示圖片10. css - 關(guān)于background-position百分比的問題?

網(wǎng)公網(wǎng)安備