同 find() 方法類似,index() 方法也可以用於檢索是否包含指定的字符串,不同之處在於,當指定的字符串不存在時,index() 方法會拋出異常。
index() 方法的語法格式如下:
str.index(sub[,start[,end]])
此格式中各參數的含義分別是:
【例 1】用 index() 方法檢索“c.biancheng.net”中首次出現“.”的位置索引。
>>> str = "c.biancheng.net"
>>> str.index('.')
1
【例 2】當檢索失敗時,index()會拋出異常。
>>> str = "c.biancheng.net"
>>> str.index('z')
Traceback (most recent call last):
File "<pyshell#49>", line 1, in <module>
str.index('z')
ValueError: substring not found
同 find() 和 rfind() 一樣,字符串變量還具有 rindex() 方法,其作用和 index() 方法類似,不同之處在於它是從右邊開始檢索,例如:
>>> str = "c.biancheng.net"
>>> str.rindex('.')
11