您也可以使用
str.index:
>>> 'sdfasdf'.index('cc')Traceback (most recent call last): File "<pyshell#144>", line 1, in <module> 'sdfasdf'.index('cc')ValueError: substring not found>>> 'sdfasdf'.index('df')1
欢迎分享,转载请注明来源:内存溢出
您也可以使用
str.index:
>>> 'sdfasdf'.index('cc')Traceback (most recent call last): File "<pyshell#144>", line 1, in <module> 'sdfasdf'.index('cc')ValueError: substring not found>>> 'sdfasdf'.index('df')1
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)