python pandas获取Excel的所有列名
时间: 2023-08-22 18:06:37 浏览: 258
python pandas 读取excel数据
可以使用 pandas 库中的 `read_excel` 函数读取 Excel 文件,并使用 `columns` 属性获取所有列名,示例如下:
```python
import pandas as pd
# 读取 Excel 文件
df = pd.read_excel('文件路径.xlsx')
# 获取所有列名
columns = df.columns.tolist()
print(columns)
```
其中,`tolist()` 方法将获取到的列名转化为列表形式输出。
阅读全文