在 Python 中,您可以在搜索列表元素时指定开始和结束索引:
>>> l = ['a', 'b', 'a']
>>> l.index('a')
0
>>> l.index('a', 1) # begin at index 1
2
>>> l.index('a', 1, 3) # begin at index 1 and stop before index 3
2
>>> l.index('a', 1, 2) # begin at index 1 and stop before index 2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: 'a' is not in list
Ruby 中是否有等效的功能?您可以使用数组切片,但这似乎效率较低,因为它需要中间对象。