jupyternotebook读取exl文件的前几列
时间: 2023-07-18 13:15:38 浏览: 102
读exl文件方法.rar_c++ exl_exl_文件exl
可以使用 Pandas 库来读取 Excel 文件,并选择需要的列。以下是一个示例代码,读取 Excel 文件的第一、二、三列:
``` python
import pandas as pd
# 读取 Excel 文件
df = pd.read_excel('your_file_path.xlsx', usecols=[0, 1, 2])
# 打印前几行数据
print(df.head())
```
其中,`usecols` 参数指定需要读取的列,可以是列的索引或列的名称。上述代码中,`usecols=[0, 1, 2]` 表示读取第一、二、三列。如果你想读取除第四列外的其他列,可以使用 `usecols=[0, 1, 2, 5, ...]`,以此类推。
阅读全文