python读取excel为dataframe,要求第一行为列标题
时间: 2024-05-02 21:20:22 浏览: 203
如何用python读取excel数据
可以使用pandas库的read_excel函数来读取excel文件为dataframe,并使用参数header=0来指定第一行为列标题。
示例代码:
```python
import pandas as pd
# 读取excel文件为dataframe,第一行为列标题
df = pd.read_excel('example.xlsx', header=0)
print(df.head()) # 打印前5行数据
```
其中,example.xlsx为要读取的excel文件名,header=0表示将第一行作为列标题。读取后的dataframe存储在变量df中。
阅读全文