pandas.Index.slice_locs #

指数。slice_locs ( start = None , end = None , step = None ) [来源] #

计算输入标签的切片位置。

参数
开始标签,默认无

如果没有,则默认为开头。

结束标签,默认无

如果没有,则默认为结尾。

步骤int,默认无

如果无,则默认为 1。

返回
元组[int, int]

也可以看看

Index.get_loc

获取单个标签的位置。

笔记

此方法仅在索引单调或唯一时才有效。

例子

>>> idx = pd.Index(list('abcd'))
>>> idx.slice_locs(start='b', end='c')
(1, 3)