python读取excel表格数据
时间: 2023-05-13 21:05:29 浏览: 155
python如何读取excel表数据.rar
可以使用 pandas 库来读取 excel 表格数据,具体代码如下:
```python
import pandas as pd
# 读取 excel 表格数据
df = pd.read_excel('example.xlsx')
# 打印表格数据
print(df)
```
其中,`example.xlsx` 是要读取的 excel 文件名,`df` 是读取后的数据,可以根据需要进行处理。
阅读全文