Python 列表 index( )方法

描述

list.index( obj ):返回列表 list 中第一个值为 obj 的元素的下标,若不存在值为 obj 的元素,则抛出异常

语法

list.index( obj )

参数

obj:查找的对象

返回值

返回查找对象的索引位置,如果在列表中没有找到,则抛出异常

示例

#coding=utf-8

lst = [5, "DaSheng", "JS Boom", 2, 5, "JS Boom", 5]

print("JS Boom 的索引位置:", lst.index("JS Boom"))
print("js boom 的索引位置:", lst.index("js boom"))

示例运行结果

JS Boom 的索引位置: 2
ValueError: 'js boom' is not in list

你可能感兴趣的:(Python)