目錄
- 生成新Excel
- 創(chuàng)建Sheet的三種方法
- 給Sheet中某cell賦值
- 賦值cell的值
- 讀取Excel
- 一個(gè)例子
- 首先創(chuàng)建一個(gè)tab頁(yè)
- 收集數(shù)據(jù)
- 保存總成績(jī)
- 總結(jié)
生成新Excel
一共創(chuàng)建了三個(gè)Sheet
創(chuàng)建Sheet的三種方法
ws1 = wb.create_sheet("Mysheet") # 在末尾添加
# or
ws2 = wb.create_sheet("Mysheet", 0) # 在開頭添加
# or
ws3 = wb.create_sheet("Mysheet", -1) # 在倒數(shù)第二位添加
給Sheet中某cell賦值
賦值cell的值
ws3.cell(column=col, row=row, value="{0}".format(get_column_letter(col)))
讀取Excel
from openpyxl import load_workbook
wb = load_workbook(filename = 'empty_book.xlsx')
sheet_ranges = wb['range names']
print(sheet_ranges['D18'].value)
加載文件
wb = load_workbook(filename = 'empty_book.xlsx')
獲取sheet
sheet_ranges = wb['range names']
一個(gè)例子
我們的目標(biāo)是將相同考號(hào)的數(shù)據(jù)放入到一行中,并計(jì)算總成績(jī)
首先創(chuàng)建一個(gè)tab頁(yè)
這里需要注意直接
肯定不行,因?yàn)檫@時(shí)候沒有這個(gè)tab呢 直接就會(huì)報(bào) KeyError: 'Worksheet 總成績(jī) does not exist.' 所以需要先檢查一下tab頁(yè)是否存在
if not '總成績(jī)' in wb.sheetnames:
wb.create_sheet('總成績(jī)')
ws = wb['總成績(jī)']
需要注意的是最后一定要進(jìn)行保存操作,否則無用 wb.save('first.xlsx')
收集數(shù)據(jù)
# 對(duì)每個(gè)tab中的分?jǐn)?shù)數(shù)據(jù)進(jìn)行收集,放入對(duì)應(yīng)的數(shù)據(jù)行中
for pos, tabName in enumerate(wb.sheetnames):
if tabName != '總成績(jī)':
wstt = wb[tabName]
for row in wstt.iter_rows(min_row=2, values_only=True):
for ind, code in enumerate(ws['A']):
if code.value == row[0]:
ws.cell(ind + 1, 4 + pos, row[2])
break
保存總成績(jī)
一開始直接用多字段相加
for po, row in enumerate(ws.iter_rows(min_row=2, values_only=True)):
ws.cell(po + 1, 3, 0 + row[3] + row[4] + row[5] + row[6] + row[7] + row[8] + row[9])
報(bào)錯(cuò)如下
ws.cell(po + 1, 3, 0 + row[3] + row[4] + row[5] + row[6] + row[7] + row[8] + row[9])
TypeError: unsupported operand type(s) for +: 'int' and 'NoneType'
原因是其中存在NoneType,int和NoneType不能相加。 可以用int(value or 0)來將對(duì)應(yīng)的None, 0, [], ""這些Python認(rèn)為是False的轉(zhuǎn)換為1。
總結(jié)
人生苦短,我用 Python,在強(qiáng)大的Python幫助下,我們只需幾行代碼就可以生成我們想要的Excel。
以上就是python openpyxl的使用方法的詳細(xì)內(nèi)容,更多關(guān)于python openpyxl的使用的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
您可能感興趣的文章:- python 辦公自動(dòng)化——基于pyqt5和openpyxl統(tǒng)計(jì)符合要求的名單
- Python Excel處理庫(kù)openpyxl詳解
- python使用openpyxl庫(kù)讀寫Excel表格的方法(增刪改查操作)
- Python利器openpyxl之操作excel表格
- Python離線安裝openpyxl模塊的步驟
- 解決python 使用openpyxl讀寫大文件的坑
- Python openpyxl 無法保存文件的解決方案
- python openpyxl 帶格式復(fù)制表格的實(shí)現(xiàn)
- python 使用openpyxl讀取excel數(shù)據(jù)