python read_Excel
时间: 2023-07-16 15:15:48 浏览: 86
要在Python中读取Excel文件,可以使用第三方库`pandas`或者`xlrd`。
使用pandas库:
1. 首先需要安装pandas库,可以使用以下命令安装:
```
pip install pandas
```
2. 读取Excel文件:
```python
import pandas as pd
df = pd.read_excel('example.xlsx') # 读取Excel文件
print(df)
```
以上代码将会读取名为`example.xlsx`的Excel文件,并将其转换为一个名为`df`的数据框。可以使用`print(df)`显示数据框中的内容。
使用xlrd库:
1. 首先需要安装xlrd库,可以使用以下命令安装:
```
pip install xlrd
```
2. 读取Excel文件:
```python
import xlrd
book = xlrd.open_workbook('example.xlsx') # 打开Excel文件
sheet = book.sheet_by_index(0) # 获取第一个工作表
for row in range(sheet.nrows): # 遍历每一行
for col in range(sheet.ncols): # 遍历每一列
print(sheet.cell(row, col).value) # 输出单元格中的值
```
以上代码将会读取名为`example.xlsx`的Excel文件,并遍历其中的每一个单元格,输出单元格中的值。
阅读全文