You are viewing documentation about an older version (1.21.0). View latest version

modin.pandas.Series.shape

property Series.shape: tuple(int)[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.21.0/src/snowflake/snowpark/modin/pandas/series.py#L2509-L2513)

Return a tuple of the shape of the underlying data.

Examples

>>> s = pd.Series([1, 2, 3])
>>> s.shape
(3,)
Copy
语言: 中文