python find

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python find相关的知识,希望对你有一定的参考价值。


Python find() 方法从字符串中找出某个子字符串第一个匹配项的索引位置,该方法与 index() 方法一样,只不过如果子字符串不在字符串中不会报异常,而是返回-1。

find() 方法语法:

S.find(sub[,start=0[,end=len(S)]])

参数

  • sub – 指定检索的子字符串
  • S – 父字符串
  • start – 可选参数,开始索引,默认为0。(可单独指定)
  • end – 可选参数,结束索引,默认为字符串的长度。(不能单独指定)
#!/usr/bin/python3

S1 = "Runoob example....wow!!!"
S2 = "exam";

print (S1.find(S2))
print (S1.find(S2, 3,100))
print (S1.find(S2, 10,100))
7
7
-1


以上是关于python find的主要内容,如果未能解决你的问题,请参考以下文章

python中index()与find()的差异

python find()用法

find() python

Python find()方法

在 Python 中使用 find 函数

python学习之find()