Python List index()方法
Python List index()方法
index() 函數(shù)用于從列表中找出某個(gè)值第一個(gè)匹配項(xiàng)的索引位置。
語法
index()方法語法:
list.index(x[, start[, end]])
參數(shù)
- x-- 查找的對(duì)象。
- start-- 可選,查找的起始位置。
- end-- 可選,查找的結(jié)束位置。
返回值
該方法返回查找對(duì)象的索引位置,如果沒有找到對(duì)象則拋出異常。
實(shí)例
以下實(shí)例展示了 index()函數(shù)的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- aList = [123, 'xyz', 'codebaoku', 'abc'] print "xyz 索引位置: ", aList.index( 'xyz' ) print "codebaoku 索引位置 : ", aList.index( 'codebaoku', 1, 3 )
以上實(shí)例輸出結(jié)果如下:
xyz 索引位置: 1 codebaoku 索引位置 : 2
相關(guān)文章
- Python 變量類型
- Python 循環(huán)語句
- Python pass 語句
- Python XML 解析
- Python 二維數(shù)組
- Python 二叉樹
- Python 回溯
- Python3 基礎(chǔ)語法
- Python3 SMTP發(fā)送郵件
- Python3 MySQL 數(shù)據(jù)庫連接 - PyMySQL 驅(qū)動(dòng)
- Python round() 函數(shù)
- Python File flush() 方法
- Python File tell() 方法
- Python os.tempnam() 方法
- Python os.tmpnam() 方法
- Python center()方法
- Python rindex()方法
- Python 字典 Dictionary values()方法
- Python Tuple 元組 cmp()方法
- Python time ctime()方法