pandas读取excel文件第三列数据
时间: 2023-10-26 07:15:52 浏览: 81
pandas读取excel文件
5星 · 资源好评率100%
可以通过以下代码读取excel文件中的第三列数据:
```python
import pandas as pd
df = pd.read_excel('filename.xlsx')
column_three = df.iloc[:, 2]
```
其中 `filename.xlsx` 是需要读取的excel文件名,`df.iloc[:, 2]` 表示选取所有行和第三列数据。
阅读全文