Python3 list.index()方法

2019-10-16 23:10:36
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#'))
 
當我們執行上面的程式,會產生以下結果 -
Traceback (most recent call last):
  File "test.py", line 3, in 
    print ('Index of C#', list1.index('C#'))
ValueError: 'C#' is not in list