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
如果找到子字符串,则两个函数的行为方式相同。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)