Python List index() 方法
Python 列表 ( List ) 对象的 index() 方法用于从列表中找出某个值第一个匹配项的索引位置
语法
list_obj.index(obj)
参数
参数 | 说明 |
---|---|
obj | 查找的对象 |
返回值
返回查找对象的索引位置
如果没有找到对象则抛出异常 ValueError
范例
>>> p1 = ['PEK', 28, 'Tsinghua','Li Bai', 'Tsinghua'] >>> p1.index('Tsinghua') 2 >>> p1.index('city') Traceback (most recent call last): File "<pyshell#159>", line 1, in <module> p1.index('city') ValueError: 'city' is not in list