databricks.koalas.Series.axes

property Series.axes

Return a list of the row axis labels.

Examples

>>> kser = ks.Series([1, 2, 3])
>>> kser.axes
[Int64Index([0, 1, 2], dtype='int64')]