pandas.Series.list.__getitem__ #

系列.列表. __getitem__ ( key ) [来源] #

系列中的索引或切片列表。

参数
关键整数 |片

要从每个列表访问的索引或索引切片。

返回
熊猫系列

请求索引处的列表。

例子

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