在Python中,find()
方法用于查找字符串中是否包含指定的子字符串。該方法會返回子字符串在原始字符串中第一次出現的索引位置,如果沒有找到則返回-1。
string = "Hello, World!"
index = string.find("World")
print(index) # 輸出:7
index = string.find("Python")
print(index) # 輸出:-1
find()
方法還可以指定起始和結束索引,以限制搜索范圍:
string = "Hello, World!"
index = string.find("o", 5)
print(index) # 輸出:7
index = string.find("o", 5, 8)
print(index) # 輸出:-1