请帮我写一段 打印df表列索引名称 的代码
时间: 2024-04-29 12:26:48 浏览: 158
读数据_读取文件某一列数据(带表头)_
5星 · 资源好评率100%
以下是 Python 代码片段,可以打印 Pandas DataFrame 表格的列索引名称:
```
import pandas as pd
# 假设 df 是一个 Pandas DataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]})
# 打印列索引名称
for col in df.columns:
print(col)
```
运行代码后,会输出三个列索引名称:A、B、C。如果你有其他 Pandas DataFrame,可以将 df 替换为相应的变量名。
阅读全文