p ython pandas读取excel
时间: 2023-04-19 17:02:11 浏览: 129
python pandas 读取excel数据
可以使用pandas库中的`read_excel()`函数读取excel文件。示例代码如下:
```python
import pandas as pd
df = pd.read_excel('file.xlsx')
```
在这里,'file.xlsx'是要读取的excel文件的文件名,df是读取后存储数据的变量。
阅读全文
python pandas 读取excel数据