读取excel数据代码
时间: 2023-09-18 16:08:31 浏览: 40
读取excel表数据代码!
以下是使用Python中的pandas库读取Excel数据的示例代码:
```python
import pandas as pd
# 读取Excel文件
df = pd.read_excel('example.xlsx')
# 打印数据
print(df.head())
```
其中,read_excel()函数用于读取Excel文件,参数为文件路径。读取后,可以使用head()函数打印前几行数据。需要注意的是,pandas库需要额外安装,可以使用pip命令进行安装:
```
pip install pandas
```
阅读全文