Python 3 - 字符串 find() 方法
-
描述
find()方法确定字符串 str 是否出现在字符串中,或者在给定起始索引 beg 和结束索引 end 的情况下是否出现在字符串的子字符串中。 -
句法
以下是语法find()方法 -str.find(str, beg = 0 end = len(string))
-
参数
-
str− 这指定要搜索的字符串。
-
beg− 这是起始索引,默认为 0。
-
end− 这是结束索引,默认情况下它等于字符串的长度。
-
-
返回值
如果找到索引,否则为 -1。 -
例子
#!/usr/bin/python3 str1 = "this is string example....wow!!!" str2 = "exam"; print (str1.find(str2)) print (str1.find(str2, 10)) print (str1.find(str2, 40))
-
结果
当我们运行上面的程序时,它会产生以下结果 -15 15 -1