在 Python 中,可以使用字符串的 find() 方法来查找子字符串。find() 方法返回子字符串在原始字符串中的索引,如果找不到,则返回 -1。
下面是使用 find() 方法查找子字符串的示例代码:
# 原始字符串string = "Hello, world!"# 查找子字符串index = string.find("world")# 输出结果if index != -1:print("子字符串 'world' 在原始字符串中的索引为", index)else:print("未找到子字符串")输出结果:
子字符串 'world' 在原始字符串中的索引为 7在上面的示例中,find() 方法查找子字符串 “world” 在原始字符串 “Hello, world!” 中的索引。由于子字符串存在,因此返回值为 7。

