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 循环语句
- Python pass 语句
- Python XML 解析
- Python 二维数组
- Python 二叉树
- Python 回溯
- Python3 基础语法
- Python3 SMTP发送邮件
- 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()方法