pd.read_excel去掉第一行第一列
时间: 2023-10-29 15:06:54 浏览: 97
用python语言把excel表格首行删去
5星 · 资源好评率100%
可以使用pandas的read_excel函数的参数header和index_col来指定要跳过的行和列。
例如,要跳过第一行和第一列,可以这样写:
```python
import pandas as pd
df = pd.read_excel('filename.xlsx', header=1, index_col=0)
```
这里的header=1表示跳过第一行,index_col=0表示将第一列作为索引列。
阅读全文