Python 字符串 find() 方法

实例

单词 "welcome" 在文本中的什么位置?

txt = "Hello, welcome to my world."

x = txt.find("welcome")

print(x)

运行实例

定义和用法

find() 方法查找指定值的首次出现。

如果找不到该值,则 find() 方法返回 -1。

find() 方法与 index() 方法几乎相同,唯一的区别是,如果找不到该值,index() 方法将引发异常。(请看下面的例子)

语法

string.find(value, start, end)

参数值

参数 描述
value 必需。要检索的值。
start 可选。开始检索的位置。默认是 0。
end 可选。结束检索的位置。默认是字符串的结尾。

更多实例

实例

字母 "e" 在文本总首次出现的位置:

txt = "Hello, welcome to my world."

x = txt.find("e")

print(x)

运行实例

实例

如果只搜索位置 5 到 10 时,字母 "e" 在文本总首次出现的位置:

txt = "Hello, welcome to my world."

x = txt.find("e", 5, 10)

print(x)

运行实例

实例

如果找不到该值,则 find() 方法返回 -1,但是 index() 方法将引发异常:

txt = "Hello, welcome to my world."

print(txt.find("q"))
print(txt.index("q"))

运行实例