您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關如何解決python3中excel追加寫入格式被覆蓋問題的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
關于python3中的追加寫入excel問題,這個問題坑了我幾小時,其實加一個參數即可。
因為之前有寫好的excel,想追加寫入,但是寫入后卻只有寫入后的單元格格式,之前寫的完全消失。
以下是我的代碼
這代碼可以用是我做的一個爬蟲維護項目:
def times(): User_Agent = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36' headers = { 'User-Agent': User_Agent } search_url = 'https://www.cnss.com.cn/u/cms/www/indexJson/bdi_month.json?v=1577414941357' request = urllib.request.Request(search_url, headers=headers) response = urllib.request.urlopen(request) content = response.read().decode('utf-8') content = ''.join(content) # print(content) # index = re.findall('index":"(.*?)"', content) # 獲取指數 date = re.findall('date":"(.*?)"', content) # 獲取時間 time = [] i = 0 start_date = date[0].replace('.', '年') start_date.replace('.', '月') end_date = date[-1].replace('.', '年') end_date.replace('.', '月') # print(index,date,start_date,end_date) for j in range(int(len(date) / 1)): temp = date[i:i + 1] i += 1 time.append(temp) hears = start_date + '日' + '——' + end_date + '日' + '嘻嘻嘻' title=['交易日期','干散貨指數(BDI)','海岬型指數(BCI)','巴拿馬型指數(BPI)','超靈便型船運價指數(BSI)','靈便型船指數(BHSI)'] sheet1.write_merge(0, 0+0,0,0+5, hears, style) for ti in range(len(title)): sheet1.write(1, ti+0, title[ti], style) for x in range(len(time)): for y in range(len(time[x])): sheet1.write(x + 2, 0, time[x][y], style) f.save('你想放的路徑.xls')
上面的代碼還是可以繼續使用
標題xlwt的缺陷:
xlwt只能創建一個全新的excel文件,然后對這個文件進行寫入內容以及保存。但是大多數情況下我們希望的是讀入一個excel文件,然后進行修改或追加,這個時候就需要xlutils了。
xlutils的簡單使用:
接下來的部分就是關鍵所在了
formatting_info=True這個參數能保留原excel格式 def write_excel_xls_append(path, value,u): index = len(value) # 獲取需要寫入數據的行數 workbook = xlrd.open_workbook('./result/30波羅的海干散貨運價指數.xls',formatting_info=True) # 打開工作簿 sheets = workbook.sheet_names() # 獲取工作簿中的所有表格 worksheet = workbook.sheet_by_name(sheets[0]) # 獲取工作簿中所有表格中的的第一個表格 rows_old = worksheet.ncols # 獲取表格中已存在的數據的行數 new_workbook = copy(workbook) # 將xlrd對象拷貝轉化為xlwt對象 styleS = xlwt.XFStyle() alignment = xlwt.Alignment() alignment.horz = xlwt.Alignment.HORZ_CENTER alignment.vert = xlwt.Alignment.VERT_CENTER styleS.alignment = alignment new_worksheet = new_workbook.get_sheet(0) # 獲取轉化后工作簿中的第一個表格 for i in range(0, index): for j in range(0, len(value[i])): new_worksheet.write(i+2, u+1, value[i][j],styleS) # 追加寫入數據,注意是從i+rows_old行開始寫入 new_workbook.save(path) # 保存工作簿
然后你就會發現你的excel簡直完美~~~
感謝各位的閱讀!關于“如何解決python3中excel追加寫入格式被覆蓋問題”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。