我们如何在不安装Microsoft Office的情况下以python格式读取Excel文件(.xls或xlsx文件)[关闭]

问题描述 投票:-4回答:2

我们如何使用python在Excel文件(.xls或xlsx文件)中进行读写?而不安装Microsoft Office。

python python-3.x openpyxl
2个回答
0
投票

使用xlrd模块,您可以从电子表格中检索信息。例如,可以在Python中完成读取,写入或修改数据的操作。另外,您可能必须浏览各种工作表并根据某些条件检索数据或修改某些行和列。

xlrd模块用于从电子表格中提取数据。

安装xlrd模块的命令:

pip install xlrd

使用xlrd读取exel文件

# Reading an excel file using Python 
import xlrd 

# Give the location of the file 
loc = ("path of file") 

# To open Workbook 
wb = xlrd.open_workbook(loc) 
sheet = wb.sheet_by_index(0) 

# For row 0 and column 0 
sheet.cell_value(0, 0) 

-1
投票

使用xlrd软件包-pip install xlrd

https://xlrd.readthedocs.io/en/latest/

© www.soinside.com 2019 - 2024. All rights reserved.