Python List index()


Python List index()

在本教程中,我们将了解Python List的 index 方法。Python Listindex 方法用于查找列表中元素的索引

Python 列表索引示例

您可以简单地使用 index 方法来查找列表中元素的索引。如果元素出现多次,则返回第一个元素。 让我们借助简单的例子来理解这一点。

list1=[1,2,'three','four',5]
print("Index of 'three' in list1:",list1.index('three'))

输出:

Index of ‘three’ in list1: 2

如果元素不存在于列表中,则会引发 ValueError。

list1=[1,2,'three','four',5]

print("Index of 6 in list1:",list1.index(6))

输出:

—————————————————————————
ValueError Traceback (most recent call last)
in ()
1 list1=[1,2,’three’,’four’,5] 2
—-> 3 print(“Index of 6 in list1:”,list1.index(6))
ValueError: 6 is not in list

如果列表中多次出现元素,则返回该元素第一次出现的索引。

输出:

Index of ‘three’ in list1: 2

如果元素不存在于列表中,则会引发 ValueError。

list1=[1,2,3,2,1]
print("Index of 1 in list1:",list1.index(1))
print("Index of 2 in list1:",list1.index(2))

输出:

Index of 1 in list1: 0
Index of 2 in list1: 1

这就是 Python List 索引方法的全部内容。