查阅list中元素在excel中第几行的代码
时间: 2023-05-28 14:06:14 浏览: 134
查看代码行数
以下是Python代码示例,可以查找列表中元素在Excel中的第几行:
```python
import pandas as pd
# 读取Excel文件
df = pd.read_excel('example.xlsx')
# 定义要查找的元素
target = 'apple'
# 查找元素在DataFrame中的行索引
row_index = df.index[df['Fruit'] == target].tolist()[0]
# Excel中的行索引从1开始,因此需要加1
excel_row_index = row_index + 1
print(f"The row index of '{target}' in Excel is {excel_row_index}.")
```
请注意,此示例假设Excel文件中的第一行是标题行,数据从第二行开始。如果您的Excel文件格式不同,请相应地更改代码。
阅读全文