str.index 查找最小索引
字符串方法 str.index(),Python 官方文档描述如下:
help(str.index)
Help on method_descriptor:
index(...)
S.index(sub[, start[, end]]) -> int
Return the lowest index in S where substring sub is found,
such that sub is contained within S[start:end]. Optional
arguments start and end are interpreted as in slice notation.
Raises ValueError when the substring is not found.
返回子字符串 sub 在 s[start:end] 切片内被找到的最小索引。可选参数 start 与 end 会被解读为切片表示法。类似于 find(),但在找不到 sub 时会引发 ValueError。
只给定 sub 一个参数的话,于是从第一个字符开始搜索到字符串结束;如果,随后给定了一个可选参数的话,那么它是 start,于是从 start 开始,搜索到字符串结束;如果 start 之后还有参数的话,那么它是 end;于是从 start 开始,搜索到 end - 1 结束(即不包含索引值为 end 的那个字符)。
'pythonpython'.index('y')
1
'pythonpython'.index('pt')
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-4252de1acf66> in <module>
----> 1 'pythonpython'.index('pt')
ValueError: substring not found
'pythonpython'.index('y',5)
7
'pythonpython'.index('y',5,7)
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-5-35705122f03a> in <module>
----> 1 'pythonpython'.index('y',5,7)
ValueError: substring not found