在Python中,字符串查找可以使用find()
方法或in
关键字。
find()
方法返回字符串中第一个匹配项的索引,如果没有找到匹配项,则返回-1。例如:
text = "Hello, world!"
index = text.find("world")
print(index) # 输出 7
in
关键字可以用于检查一个字符串是否包含另一个字符串。例如:
text = "Hello, world!"
if "world" in text:
print("Found it!")
这两种方法都可以用于查找字符串中的子字符串。
领取专属 10元无门槛券
手把手带您无忧上云