pandas读取excel的时候怎么不读取第一列的数据
时间: 2024-05-14 08:13:26 浏览: 277
pandas读取excel文件
5星 · 资源好评率100%
可以使用pandas的read_excel函数,设置参数usecols来指定需要读取的列,例如:
```
import pandas as pd
df = pd.read_excel('filename.xlsx', usecols=[1,2,3]) # 读取第2、3、4列的数据
```
这样就可以不读取第一列的数据了。
阅读全文