Python字串find()
方法確定字串str
是出現在字串中,還是在字串指定範圍的子串中,子字串是由給給定起始索引beg
和結束索引end
切片得出。
語法
以下是find()
方法的語法 -
str.find(str, beg = 0 end = len(string))
引數
0
。返回值
-1
。範例
以下範例顯示了find()
方法的用法。
#!/usr/bin/python3
str1 = "this is string example....wow!!!"
str2 = "exam";
print (str1.find(str2))
print (str1.find(str2, 10))
print (str1.find(str2, 40))
當執行上面的程式,它產生以下結果 -
15
15
-1