pandas.DataFrame.keys #

数据框。( ) [来源] #

获取“信息轴”(有关更多信息,请参阅索引)。

这是Series 的索引,DataFrame 的列。

返回
指数

信息轴。

例子

>>> d = pd.DataFrame(data={'A': [1, 2, 3], 'B': [0, 4, 8]},
...                  index=['a', 'b', 'c'])
>>> d
   A  B
a  1  0
b  2  4
c  3  8
>>> d.keys()
Index(['A', 'B'], dtype='object')