列出 DataFrame 列名称

df = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6], 'c': [7, 8, 9]})

要在 DataFrame 中列出列名称:

>>> list(df)
['a', 'b', 'c']

使用调试器时,此列表推导方法特别有用:

>>> [c for c in df]
['a', 'b', 'c']

这是漫长的道路:

sampledf.columns.tolist()

你也可以将它们打印为索引而不是列表(对于包含许多列的数据帧,这不会非常明显):

df.columns