赞
踩
index() 函数用于从列表中找出某个值第一个匹配项的索引位置。
index()方法语法:
list.index(x[, start[, end]])
x-- 查找的对象。
start-- 可选,查找的起始位置。
end-- 可选,查找的结束位置。
该方法返回查找对象的索引位置,如果没有找到对象则抛出异常。
List = ['123', 'abc', 'teacher', 'school']
print("abc索引位置: ", List.index('abc'))
print("123索引位置 : ", List.index( '123', 0, 3 ))
返回结果如下:
abc索引位置: 1
123索引位置 : 0
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。