精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python List index()方法

Python List index()方法

Python 列表 ListPython 列表 List

index() 函數用于從列表中找出某個值第一個匹配項的索引位置。

 

語法

index()方法語法:

list.index(x[, start[, end]])

 

參數

  • x-- 查找的對象。
  • start-- 可選,查找的起始位置。
  • end-- 可選,查找的結束位置。

 

返回值

該方法返回查找對象的索引位置,如果沒有找到對象則拋出異常。

 

實例

以下實例展示了 index()函數的使用方法:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

aList = [123, 'xyz', 'codebaoku', 'abc']

print "xyz 索引位置: ", aList.index( 'xyz' )
print "codebaoku 索引位置 : ", aList.index( 'codebaoku', 1, 3 )

以上實例輸出結果如下:

xyz 索引位置:  1
codebaoku 索引位置 :  2

Python 列表 ListPython 列表 List

下一節(jié):Python List insert()方法

Python 教程

相關文章