pandas.Index.shape #

财产 指数。形状[来源] #

返回基础数据形状的元组。

例子

>>> idx = pd.Index([1, 2, 3])
>>> idx
Index([1, 2, 3], dtype='int64')
>>> idx.shape
(3,)