Python 3 – 列表 index() 方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程