Python 列表项索引查找



列表类的 index() 方法返回给定项第一次出现的索引。

语法

list.index(obj)

返回值

index() 方法返回一个整数,表示对象第一次出现的索引。

示例

请看以下示例 -

lst = [25, 12, 10, -21, 10, 100]
print ("lst:", lst)
x = lst.index(10)
print ("First index of 10:", x)

它将产生以下输出 -

lst: [25, 12, 10, -21, 10, 100]
First index of 10: 2
python_list_methods.htm
广告