首页 > Python资料 博客日记
python(5):python读取excel数据
2024-09-06 09:00:07Python资料围观45次
python读取excel数据
xlrd参考:https://www.cnblogs.com/dream66/p/12572007.html
openpyxl参考:https://www.cnblogs.com/dream66/p/12599627.html
xlrd/xlwt模块简介:
python操作excel主要用到xlrd和xlwt这两个库,即xlrd是读excel,xlwt是写excel的库。
xlrd/xlwt模块安装:
和其它模块安装方式一样,可以离线安装和在线安装
一般用在线安装方式: pip install xlrd 和 pip install xlwt
xlrd模块使用:
import xlrd
data = xlrd.open_workbook(filename) #文件名以及路径
table = data.sheets()[0] #通过索引顺序获取
table = data.sheet_by_name(sheet_name) #通过名称获取
行的操作
nrows = table.nrows #获取该sheet中的有效行数
table.row(rowx) #返回由该行中所有的单元格对象组成的列表
列的操作
ncols = table.ncols #获取列表的有效列数
table.col(colx, start_rowx=0, end_rowx=None) #返回由该列中所有的单元格对象组成的列表
单元格操作
table.cell(rowx,colx) #返回单元格对象
table.cell_type(rowx,colx) #返回单元格中的数据类型
table.cell_value(rowx,colx) #返回单元格中的数据
合并单元格的读取操作
table.merged_cells #获取当前文档中的所有合并单元格的位置信息
它返回的是一个列表,每一个元素是合并单元格的位置信息的数组,数组包含
四个元素(起始行,结束行,起始列,结束列)
合并单元格默认不处理的情况下,返回为null,一般是希望所有被合并的每个
单元格都返回合并单元格的内容。可以用判断来实现
for (rlow, rhigh, clow, chigh) in merged:
if (row_index >= rlow and row_index < rhigh):
if (col_index >= clow and col_index < chigh):
cell_value = table.cell_value(row,col)
return cell_value
break
1、安装第三方库xlrd
安装一个1.2.0版本的xlrd;或者通过命令行pip install xlrd==1.2.0
下图是通过pycharm工具下载xlrd=1.2.0版本
2、准备一个后缀名为xls的excel文件;如下图:
3、编写python代码;
代码示例:
import os import xlrd # 当前路径 current_path=os.path.dirname(__file__) # excel的路径 excel_path=os.path.join(current_path,'../element_info_datas/element_info_datas.xls') class ElementdataUtils(object): def __init__(self,page_name,excel_path=excel_path): self.excel_path=excel_path # 打开excel文件 self.workbook=xlrd.open_workbook(self.excel_path) # 打开指定的sheet页 self.sheet=self.workbook.sheet_by_name(page_name) # 获取sheet页中的总行数 self.row_count=self.sheet.nrows def get_element_info(self): """遍历获取excel中的数据;以字典嵌套字典的形式""" element_infos = {} for i in range(1, self.row_count): element_info = {} element_info['element_name'] = self.sheet.cell_value(i, 1) element_info['locator_type'] = self.sheet.cell_value(i, 2) element_info['locator_value'] = self.sheet.cell_value(i, 3) element_info['timeout'] = self.sheet.cell_value(i, 4) element_infos[self.sheet.cell_value(i, 0)] = element_info return element_infos #编写测试代码 if __name__=='__main__': elements=ElementdataUtils(page_name='login_page').get_element_info() print(elements)
查看执行结果:
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj