python读取excel数据后输出5-10行的数据
时间: 2024-03-23 22:42:27 浏览: 129
python读取excel数据.pdf
好的,可以使用Python的pandas库来读取Excel数据,然后使用head()方法来输出5-10行的数据。以下是示例代码:
```python
import pandas as pd
# 读取Excel数据,假设数据在Sheet1中
df = pd.read_excel('data.xlsx', sheet_name='Sheet1')
# 输出5-10行的数据
print(df.iloc[4:10])
```
这样就可以输出Excel中第5行到第10行的数据了。需要注意的是,iloc方法中的索引是从0开始的,因此第5行对应的索引是4。
阅读全文