Python那些内置函数之index()
声明:
因本⼈为AI路上的新⼿,⽂章⽤于辅助个⼈的整理记忆,理解难免有偏差之处,都是个⼈拙见,如给其他同僚造成困扰,还请见谅,⾮常⾮常⾮常欢迎私信共同讨论,共同进步
函数名:index()
作⽤:获得列表或字符串中某个元素的索引
python新手函数调⽤⽅法:
list.index(self, object, start, stop)
str.index(self, sub, start, stop)
参数:
self:指作⽤于本⾝
object/sub: 列表或字符串中的某个元素
start:可指定开始的上限
stop:结束的下限
官⽅解释:
array.index(x)
Return the smallest i such that i is the index of the first occurrence of x in the array.
少废话,上代码:
lt0 =[1,2,3]
print(lt0.index(2))#1
#如果有重复元素,则返回第⼀个出现的元素的索引
lt1 =[1,1,2,3]
print(lt1.index(1))#0
#不过,仍可以指定范围,查想得到的那个元素的索引
print(lt1.index(1,1,500))#1
"""
说明:
范围可随意指定,数字代表从第⼏个元素开始到第⼏个结束
"""
str.index(sub[, start[, end]])
Like find(), but raise ValueError when the substring is
not found.
如列表,上代码:
s ="123"
print(s.index("3"))#2

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。