用python写一个读取excel文件单元格数据的函数
时间: 2024-02-26 21:59:12 浏览: 144
如何用python读取excel数据
好的,以下是一个用 Python 读取 Excel 文件单元格数据的基本函数:
```python
import openpyxl
def read_excel_cell(file_path, sheet_name, row_num, col_num):
"""
读取 Excel 文件单元格数据
:param file_path: Excel 文件路径
:param sheet_name: 工作表名称
:param row_num: 行号
:param col_num: 列号
:return: 单元格数据
"""
try:
# 加载 Excel 文件
workbook = openpyxl.load_workbook(file_path)
# 获取指定的工作表
sheet = workbook[sheet_name]
# 获取指定单元格
cell = sheet.cell(row=row_num, column=col_num)
# 返回单元格数据
return cell.value
except Exception as e:
print('读取 Excel 文件单元格数据失败:{}'.format(e))
return None
```
以上函数使用了openpyxl库来读取Excel文件,其中`file_path`为Excel文件路径,`sheet_name`为工作表名称,`row_num`为行号,`col_num`为列号,返回指定单元格数据。如果读取失败,则会返回None并打印错误信息。
阅读全文