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