学习笔记——Python find()方法

Posted wx63186321c235c

tags:

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


1.描述

Python find() 方法检测字符串中是否包含子字符串 str ,如果指定 beg(开始) 和 end(结束) 范围,则检查是否包含在指定范围内,如果包含子字符串返回开始的索引值,否则返回-1。

2.语法

find()方法语法:


str.find(str, beg=0, end=len(string))


3.参数

  • str -- 指定检索的字符串
  • beg -- 开始索引,默认为0。
  • end -- 结束索引,默认为字符串的长度。

4.返回值

如果包含子字符串返回开始的索引值,否则返回-1。

栗子:

str1 = "this is string example....wow!!!"
str2 = "exam"
print(str1.find(str2))

打印结果为:

15.

说明:exam出现在该字符串的第15位。

以上是关于学习笔记——Python find()方法的主要内容,如果未能解决你的问题,请参考以下文章

find() python

Python+Selenium学习笔记6 - 定位

Python find()方法

python学习笔记011——内置函数dir()

Python str类的 find() 方法

Python学习笔记之基本数据结构方法