码迷,mamicode.com
首页 > 编程语言 > 详细

python序列类型字符串的方法L.index()与L.find()区别

时间:2018-02-11 10:39:29      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:python   with   dex   display   ring   error   not   nbsp   解释   

首先官方解释

    S.index(sub[, start[, end]]) -> int
    
    Like S.find() but raise ValueError when the substring is not found.
    S.find(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.
    
    Return -1 on failure.

可以看到S.index()与S.find()类似,不过索引字符串中的子串没找到会报错。

而S.find()在找不到substring时,不会报错,而会返回-1

 

总结:

s.index(x):返回字符串中出现x的最左端的索引值,如果不在则抛出valueError异常

s.find(x) :返回字符串中出现x的最左端字符的索引值,如果不在则返回-1

 

 

python序列类型字符串的方法L.index()与L.find()区别

标签:python   with   dex   display   ring   error   not   nbsp   解释   

原文地址:https://www.cnblogs.com/hokky/p/8437194.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!