string = 'view codehelloworld'if
'world'in
string:
'exist
'else:
'not exist
'
1 string = 'view codehelloworld'2
3if string.find(』world『) == 5: #
5的意思是world字元從那個序開始,因為w位於第六個,及序為5,所以判斷545
'exist'6
7else:8
9print
'not exist
'
1view codeif string.index(』world『) > -1: #
因為-1的意思代表沒有找到字元,所以判斷》-1就代表能找到23
'exist'4
5else:6
7print
'not exist
'
string = 'view codehelloworld'if
'world'in
string:
'exist
'else:
'not exist
'
1 string = 'view codehelloworld'2
3if string.find(』world『) == 5: #
5的意思是world字元從那個序開始,因為w位於第六個,及序為5,所以判斷545
'exist'6
7else:8
9print
'not exist
'
1view codeif string.index(』world『) > -1: #
因為-1的意思代表沒有找到字元,所以判斷》-1就代表能找到23
'exist'4
5else:6
7print
'not 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 判斷字串是否包含子字串
第一種方法 in,主要是利用物件判斷 string helloworld if world in string print exist else print not exist 第二種方法 find string helloworld if string.find world 5 5的意思是worl...