python 判斷字串是否包含子字串

2022-08-04 01:57:14 字數 528 閱讀 6193

第一種方法:in,主要是利用物件判斷

string = 'helloworld'

if 'world' in string:

print 'exist'

else:

print 'not exist'

第二種方法:find

string = 'helloworld'

if string.find(』world『) == 5: #5的意思是world字元從那個序開始,因為w位於第六個,及序為5,所以判斷5

print 'exist'

else:

print 'not exist'

第三種方法:index,此方法與find作用類似,也是找到字元起始的序號

if string.index(』world『) > -1: #因為-1的意思代表沒有找到字元,所以判斷》-1就代表能找到

print 'exist'

如果沒找到,程式會丟擲異常

判斷字串 python判斷字串是否包含字母

第一種方法 使用正規表示式判斷字串是否包含字母 coding utf 8 import re def check str my re re.compile r a za z re.s res re.findall my re,str if len res print u 含有英文本元 else pr...

Python判斷字串是否包含指定字串的方法

def main str abcdefgh re cd flag re in strprint flag if name main main 結果 true1.find 檢測字串中是否包含子字串,如果指定 beg 開始 和 end 結束 範圍內,則檢查是否包含在指定範圍內,如果包含子字串,返回第一次...

Python 判斷字串是否包含子字串

string helloworld if world in string print exist else print not exist view code 1 string helloworld 2 3if string.find world 5 5的意思是world字元從那個序開始,因為w位於...