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