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

2022-08-16 01:03:16 字數 1199 閱讀 9459

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位於第六個,及序為5,所以判斷545

print

'exist'6

7else:8

9print

'not exist

'

view code

1

if string.index(』world『) > -1: #

因為-1的意思代表沒有找到字元,所以判斷》-1就代表能找到23

print

'exist'4

5else:6

7print

'not exist

'

view code

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位於第六個,及序為5,所以判斷545

print

'exist'6

7else:8

9print

'not exist

'

view code

1

if string.index(』world『) > -1: #

因為-1的意思代表沒有找到字元,所以判斷》-1就代表能找到23

print

'exist'4

5else:6

7print

'not exist

'

view code

判斷字串 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...