python pandas 读取Excel
时间: 2023-05-20 09:06:25 浏览: 127
python pandas 读取excel数据
可以使用 pandas 库中的 read_excel() 函数来读取 Excel 文件。以下是一个示例代码:
```python
import pandas as pd
# 读取 Excel 文件
df = pd.read_excel('example.xlsx')
# 打印数据框的前几行
print(df.head())
```
其中,'example.xlsx' 是你要读取的 Excel 文件的文件名。你可以根据需要修改文件名和路径。
阅读全文