python读取excel为dataframe,要求第一列为行标题
时间: 2024-05-12 14:02:06 浏览: 129
read_excel.zip_count5rr_encryption_python excel读取处理_python read_
可以使用pandas库中的read_excel函数来读取Excel文件,并通过指定参数将第一列作为行标题。示例代码如下:
```python
import pandas as pd
# 读取Excel文件,指定第一列为行标题
df = pd.read_excel('example.xlsx', index_col=0)
# 打印dataframe
print(df)
```
其中,'example.xlsx'为要读取的Excel文件名,index_col=0表示将第一列作为行标题。
阅读全文