1. 程式人生 > >python中find()的用法

python中find()的用法

1.描述

Python find() 方法檢測字串中是否包含子字串 str ,如果指定 beg(開始) 和 end(結束) 範圍,則檢查是否包含在指定範圍內,如果包含子字串返回開始的索引值,否則返回-1。

2.語法

find()方法語法:

str.find(str, beg=0, end=len(string))

3.引數

str – 指定檢索的字串

beg – 開始索引,預設為0。

end – 結束索引,預設為字串的長度。

4.返回值

如果包含子字串返回開始的索引值,否則返回-1。

5.例項

以下例項展示了find()方法的例項:

# -*- coding: UTF-8 -*-
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