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