python 实现读取excel数据 源代码
时间: 2024-05-03 17:20:58 浏览: 111
python读取excel数据
可以用 pandas 库读取excel数据,代码如下:
```python
import pandas as pd
# 读取excel文件
df = pd.read_excel('your_file_name.xlsx')
# 显示数据
print(df.head())
```
请注意,需要先安装 pandas 库。
阅读全文
python读取excel数据