共计 448 个字符,预计需要花费 2 分钟才能阅读完成。
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()
方法只返回第一次出现的索引值。如果想要返回所有出现的索引值,可以使用列表解析或循环遍历的方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完