pandas.Series.to_list#

Series.to_list()[源代码]#

返回一个值的列表。

这些每个都是标量类型,这是 Python 标量(对于 str、int、float)或 pandas 标量(对于 Timestamp/Timedelta/Interval/Period)

返回:
列表

包含值为 Python 或 pandas 标量的列表。

参见

numpy.ndarray.tolist

将数组作为 Python 标量的 a.ndim 级深层嵌套列表返回。

示例

对于系列

>>> s = pd.Series([1, 2, 3])
>>> s.to_list()
[1, 2, 3]

对于索引:

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