在Python中,find()
函數用于在字符串中查找指定的子字符串,如果找到則返回子字符串的起始索引值,如果找不到則返回-1。其語法如下:
str.find(sub[, start[, end]])
其中,str
是要進行查找的字符串,sub
是要查找的子字符串,start
和end
是可選參數,用于指定查找的起始位置和結束位置。
舉個例子,假設有字符串str = "Hello, World!"
,我們想查找子字符串"World"
在str
中的位置,可以使用find()
函數進行查找:
str = "Hello, World!"
index = str.find("World")
print(index)
輸出結果為:7
,表示子字符串"World"
在字符串str
中的起始索引位置是7。