pandas.Series.list.len #

系列.列表. len ( ) [来源] #

返回系列中每个列表的长度。

返回
熊猫系列

每个列表的长度。

例子

>>> import pyarrow as pa
>>> s = pd.Series(
...     [
...         [1, 2, 3],
...         [3],
...     ],
...     dtype=pd.ArrowDtype(pa.list_(
...         pa.int64()
...     ))
... )
>>> s.list.len()
0    3
1    1
dtype: int32[pyarrow]