Python 3 – 列表 index() 方法
描述
index() 方法返回列表中出现 obj 的最低索引。
语法
index() 方法的语法如下所示 −
list.index(obj)
参数
obj − 这是要查找的对象。
返回值
如果找到了对象,此方法将返回其索引,否则引发异常表示未找到该值。
示例
下面的示例演示了 index() 方法的用法。
#!/usr/bin/python3
list1 = ['physics', 'chemistry', 'maths']
print ('Index of chemistry', list1.index('chemistry'))
print ('Index of C#', list1.index('C#'))
结果
运行上述程序时,它将产生以下结果 −
Index of chemistry 1
Traceback (most recent call last):
File "test.py", line 3, in <module>
print ('Index of C#', list1.index('C#'))
ValueError: 'C#' is not in list