python读取excel1-2行数据
时间: 2023-04-10 14:04:54 浏览: 112
python 读取txt中每行数据,并且保存到excel中的实例
可以使用 pandas 库中的 read_excel 方法来读取 excel 文件的数据,具体代码如下:
```python
import pandas as pd
# 读取 excel 文件的前两行数据
df = pd.read_excel('file.xlsx', header=[0,1], nrows=2)
# 打印读取的数据
print(df)
```
其中,`file.xlsx` 是要读取的 excel 文件名,`header=[0,1]` 表示读取文件的前两行作为表头,`nrows=2` 表示只读取前两行数据。
阅读全文