python字串實作contains功能的方法:可以利用in方法來實作contains功能,如【if "blah" not in somestring: continue】。也可以透過find函數來實現contains功能。
python的string物件沒有contains方法,不用使用string.contains的方法判斷是否包含子字串,但是python有更簡單的方法來替換contains函數。
(推薦教學:python影片教學)
方法1:使用in 方法實作contains的功能:
方法2:使用find函數實作contains的功能
以上是python字串怎麼實作contains功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!