Python List index()方法
Python List index()方法
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 變量類型
- Python 循環(huán)語句
- Python pass 語句
- Python XML 解析
- Python 二維數組
- Python 二叉樹
- Python 回溯
- Python3 基礎語法
- Python3 SMTP發(fā)送郵件
- Python3 MySQL 數據庫連接 - PyMySQL 驅動
- Python round() 函數
- 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()方法