时间:2021-05-23
Python中常用的操作Excel的三方包有xlrd,xlwt和openpyxl等,xlrd支持读取.xls和.xlsx格式的Excel文件,只支持读取,不支持写入。xlwt只支持写入.xls格式的文件,不支持读取。
openpyxl不支持.xls格式,但是支持.xlsx格式的读取写入,并且支持写入公式等。
原始数据文件apis.xlsx内容:
name method url data json result get接口 get https://httpbin.org/get?a=1&b=2 post表单接口 post https://httpbin.org/post {name: Kevin,age:1} post-json接口 post https://httpbin.org/post {name: Kevin,age: 21}
显示结果:
[('name', 'method', 'url', 'headers', 'data', 'json', 'result'), ('get接口', 'get', 'https://httpbin.org/get?a=1&b=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)# 读取标题行for row in sheet.iter_rows(max_row=1): title_row = [cell.value for cell in row]print(title_row)# 读取标题行以外数据for row in sheet.iter_rows(min_row=2): row_data = [cell.value for cell in row] print(row_data)打印结果:
(<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=1&b=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]
代码接上例
...# 读取单元格数据print(sheet['A1'].value)print(sheet.cell(1,1).value) # 索引从1开始打印结果:
name
name
代码接上例
# 写入单元格sheet['F2'] = 'PASS'result_col = title_row.index('result')+1 # 'result'所在的列号sheet.cell(3, result_col).value = 'PASS'# 整行写入new_row = ['post-xml接口', 'post', 'https://httpbin.org/post']sheet.append(new_row)# 保存文件,也可覆盖原文件excel.save("apis2.xlsx")写入结果:
name method url data json result get接口 get https://httpbin.org/get?a=1&b=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/
到此这篇关于Python3利用openpyxl读写Excel文件的文章就介绍到这了,更多相关Python3用openpyxl读写Excel文件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python读写excel文件有很多种方法:用xlrd和xlwt进行excel读写用openpyxl进行excel读写用pandas进行excel读写本文使用x
openpyxl介绍openpyxl是一个直接可用于读写xlsx、xlsm、xltx、xltm文件的Python内置库,借助它可以利用Python语法对本地xl
xlrd、xlwt和openpyxl模块的比较:区别:模块Excel格式支持xlsxlsxxlrd√√xlwt√×openpyxl×√效率:两种包对小文件的读写
摘要:Openpyxl是一个常用的python库,用于对Excel的常用格式及其模板进行数据读写等操作。简介与安装openpyxl库OpenpyxlisaPyt
前言openpyxl模块是一个读写Excel2010文档的Python库,如果要处理更早格式的Excel文档,需要用到额外的库,openpyxl是一个比较综合的