Python 字符串 find() 方法
示例
文本中 "welcome" 这个词在什么位置?
txt = "Hello, welcome to my world."
x = txt.find("welcome")
print(x)
尝试一下 »
定义和用法
The find()
方法查找指定值的第一次出现。
The find()
方法如果未找到该值,则返回 -1。
The find()
方法与 index()
方法几乎相同,唯一的区别是 index()
方法如果未找到该值,则会引发异常。(见下文示例)
语法
string.find(value, start, end)
参数值
参数 | 描述 |
---|---|
value | 必需。要查找的值 |
start | 可选。从哪里开始搜索。默认为 0 |
end | 可选。在何处结束搜索。默认为字符串的结尾 |
更多示例
示例
当你只在位置 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"))
尝试一下 »