pandas 列出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