标签: python pandas
当我打印RangeIndex时,我可以看到它"知道"它的步长是多少。
>>> r = pd.RangeIndex(0, 15, 3) >>> print(r) RangeIndex(start=0, stop=15, step=3)
我想将此作为属性进行访问,但我没有看到类似" step"或者" step_size"作为一个属性(甚至开始和停止)。这可能吗?我尝试过关注源代码,但它超出了我的范围。