python 打开excel指定sheet
时间: 2023-04-29 14:02:50 浏览: 155
python向excel添加sheet.pdf
可以使用Python中的pandas库来打开Excel文件并指定sheet。
具体步骤如下:
1. 首先需要安装pandas库,可以使用以下命令进行安装:
```
pip install pandas
```
2. 导入pandas库:
```
import pandas as pd
```
3. 使用pandas的read_excel函数打开Excel文件,并指定sheet:
```
df = pd.read_excel('文件路径.xlsx', sheet_name='Sheet1')
```
其中,'文件路径.xlsx'为Excel文件的路径,'Sheet1'为要打开的sheet名称。
4. 可以对打开的数据进行操作,例如输出前5行数据:
```
print(df.head())
```
输出结果如下:
```
列1 列2 列3
1 2 3
1 4 5 6
2 7 8 9
3 10 11 12
4 13 14 15
```
其中,'列1'、'列2'、'列3'为Excel中的列名,、1、2、3、4为行索引。
阅读全文