jupyter读取excel文件
时间: 2023-11-03 17:58:28 浏览: 114
读取excel文件
3星 · 编辑精心推荐
在jupyter notebook中,可以使用pandas库的read_excel函数来读取Excel文件。具体代码如下:
```python
import pandas as pd
df = pd.read_excel('./学生成绩.xlsx')
```
其中,'./学生成绩.xlsx'是文件路径,根据实际情况进行相应更改。
阅读全文
读取excel文件