主頁(yè) > 知識(shí)庫(kù) > Python3利用openpyxl讀寫Excel文件的方法實(shí)例

Python3利用openpyxl讀寫Excel文件的方法實(shí)例

熱門標(biāo)簽:甘肅高頻外呼系統(tǒng) 地圖標(biāo)注可以遠(yuǎn)程操作嗎 江門智能電話機(jī)器人 杭州房產(chǎn)地圖標(biāo)注 智能電話機(jī)器人調(diào)研 滴滴地圖標(biāo)注公司 如何申請(qǐng)400電話代理 天津塘沽區(qū)地圖標(biāo)注 400電話在線如何申請(qǐng)

前言

Python中常用的操作Excel的三方包有xlrd,xlwt和openpyxl等,xlrd支持讀取.xls和.xlsx格式的Excel文件,只支持讀取,不支持寫入。xlwt只支持寫入.xls格式的文件,不支持讀取。

openpyxl不支持.xls格式,但是支持.xlsx格式的讀取寫入,并且支持寫入公式等。

原始數(shù)據(jù)文件apis.xlsx內(nèi)容:

name method url data json result
get接口 get https://httpbin.org/get?a=1b=2
post表單接口 post https://httpbin.org/post {name: Kevin,age:1}
post-json接口 post https://httpbin.org/post {name: Kevin,age: 21}

讀取數(shù)據(jù)

讀取所有數(shù)據(jù)

import openpyxl

# 打開excel
excel = openpyxl.load_workbook('apis.xlsx') # 有路徑應(yīng)帶上路徑
# 使用指定工作表
sheet = excel.active # 當(dāng)前激活的工作表
# sheet = excel.get_sheet_by_name('Sheet1')
# 讀取所有數(shù)據(jù)
print(list(sheet.values)) # sheet.values 生成器
print(sheet.max_column) # 最大列數(shù)
print(sheet.max_row) # 最大行數(shù)

顯示結(jié)果:

[('name', 'method', 'url', 'headers', 'data', 'json', 'result'), ('get接口', 'get', 'https://httpbin.org/get?a=1b=2', None, None, None, None), ('post表單接口', 'post', 'https://httpbin.org/post', 'cookie: token=123', '{name: Kevin,age: 21}', None, None), ('post-json接口', 'post', 'https://httpbin.org/post', None, None, '{name: Kevin,age: 21}', None)]
7
4

按行讀取

代碼接上例

 ...
# 按行讀取
for row in sheet.iter_rows(min_row=1, min_col=1, max_col=3, max_row=3): 
 print(row)
# 讀取標(biāo)題行
for row in sheet.iter_rows(max_row=1):
 title_row = [cell.value for cell in row]
print(title_row)
# 讀取標(biāo)題行以外數(shù)據(jù)
for row in sheet.iter_rows(min_row=2):
 row_data = [cell.value for cell in row]
 print(row_data)

打印結(jié)果:

(Cell 'Sheet1'.A1>, Cell 'Sheet1'.B1>, Cell 'Sheet1'.C1>)
(Cell 'Sheet1'.A2>, Cell 'Sheet1'.B2>, Cell 'Sheet1'.C2>)
(Cell 'Sheet1'.A3>, Cell 'Sheet1'.B3>, Cell 'Sheet1'.C3>)
['name', 'method', 'url', 'headers', 'data', 'json', 'result']
['get接口', 'get', 'https://httpbin.org/get?a=1b=2', None, None, None, None]
['post表單接口', 'post', 'https://httpbin.org/post', 'cookie: token=123', '{name: Kevin,age: 21}', None, None]
['post-json接口', 'post', 'https://httpbin.org/post', None, None, '{name: Kevin,age: 21}', None]

讀取單元格數(shù)據(jù)

代碼接上例

...
# 讀取單元格數(shù)據(jù)
print(sheet['A1'].value)
print(sheet.cell(1,1).value) # 索引從1開始

打印結(jié)果:

name
name

寫入文件

代碼接上例

# 寫入單元格
sheet['F2'] = 'PASS'
result_col = title_row.index('result')+1 # 'result'所在的列號(hào)
sheet.cell(3, result_col).value = 'PASS'
# 整行寫入
new_row = ['post-xml接口', 'post', 'https://httpbin.org/post']
sheet.append(new_row)
# 保存文件,也可覆蓋原文件
excel.save("apis2.xlsx")

寫入結(jié)果:

name method url data json result
get接口 get https://httpbin.org/get?a=1b=2 PASS
post表單接口 post https://httpbin.org/post {name: Kevin,age:1} PASS
post-json接口 post https://httpbin.org/post {name: Kevin,age: 21}
post-xml接口 post https://httpbin.org/post

更多操作可參考官方文檔: https://openpyxl.readthedocs.io/en/stable/

總結(jié)

到此這篇關(guān)于Python3利用openpyxl讀寫Excel文件的文章就介紹到這了,更多相關(guān)Python3用openpyxl讀寫Excel文件內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • 如何用python合并多個(gè)excel文件
  • python合并多個(gè)excel文件的示例
  • 使用python將多個(gè)excel文件合并到同一個(gè)文件的方法
  • 使用Python橫向合并excel文件的實(shí)例
  • Python批量合并有合并單元格的Excel文件詳解
  • Python將多個(gè)excel文件合并為一個(gè)文件
  • 使用Python快速打開一個(gè)百萬行級(jí)別的超大Excel文件的方法
  • 淺談Python xlwings 讀取Excel文件的正確姿勢(shì)
  • 基于Python的接口自動(dòng)化讀寫excel文件的方法
  • python基于openpyxl生成excel文件
  • Python xlrd/xlwt 創(chuàng)建excel文件及常用操作
  • 教你用Python代碼實(shí)現(xiàn)合并excel文件

標(biāo)簽:德宏 廊坊 長(zhǎng)春 臨汾 漢中 重慶 東莞 河池

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Python3利用openpyxl讀寫Excel文件的方法實(shí)例》,本文關(guān)鍵詞  Python3,利用,openpyxl,讀寫,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Python3利用openpyxl讀寫Excel文件的方法實(shí)例》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Python3利用openpyxl讀寫Excel文件的方法實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章