查找和索引之间的区别

我是python的新手,无法完全理解find和index之间的区别。

>>> line

'hi, this is ABC oh my god!!'

>>> line.find("o")

16

>>> line.index("o")

16

他们总是返回相同的结果。谢谢!!

回答:

str.find-1当找不到子字符串时返回。

>>> line = 'hi, this is ABC oh my god!!'

>>> line.find('?')

-1

虽然str.index加注ValueError

>>> line.index('?')

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

ValueError: substring not found

如果找到子字符串,则两个函数的行为方式相同。

以上是 查找和索引之间的区别 的全部内容, 来源链接: utcz.com/qa/399366.html

回到顶部