pandas.api.extensions.ExtensionArray.shape#

property ExtensionArray.shape[源代码]#

返回数组维度的元组。

参见

numpy.ndarray.shape

返回数组形状的类似属性。

DataFrame.shape

返回一个表示 DataFrame 维度的元组。

Series.shape

返回一个表示 Series 维度的元组。

例子

>>> arr = pd.array([1, 2, 3])
>>> arr.shape
(3,)