位置:首頁 > 腳本語言 > Python教學 > Python List.index()方法

Python List.index()方法

index()方法返回obj出現在列表中最低位索引。

語法

以下是index()方法的語法:

list.index(obj)

參數

  • obj -- 這是被找到的對象

返回值

此方法返回找到的對象的索引,否則拋出一個異常,表明冇有找到對應值

例子

下麵的例子顯示了index()方法的使用

#!/usr/bin/python

aList = [123, 'xyz', 'zara', 'abc'];

print "Index for xyz : ", aList.index( 'xyz' ) ;
print "Index for zara : ", aList.index( 'zara' ) ;

當我們運行上麵的程序,它會產生以下結果:

Index for xyz :  1
Index for zara :  2