阅读量:0
Python中可以使用index()
方法来返回列表元素的索引。index()
方法接受一个参数,表示要查找的元素。如果找到了元素,就返回其第一次出现的索引值;如果没有找到元素,则会抛出一个ValueError
异常。
下面是一个例子:
fruits = ['apple', 'banana', 'orange', 'apple', 'pear'] index = fruits.index('banana') print(index) # 输出: 1 index = fruits.index('apple') print(index) # 输出: 0 index = fruits.index('grape') # 抛出 ValueError 异常
注意,index()
方法只返回第一次出现的索引值。如果想要返回所有出现的索引值,可以使用列表解析或循环遍历的方法。