複雑な正規表現を使用せずにスペースで区切られた文字列を検索する方法。これが私のコードです
import re
stringToQueryLevel1 = ['why this','why this code','why this code is complex']
for i in range(stringToQueryLevel1.__len__()):
if re.search('why this' , stringToQueryLevel1[i]) != None:
rc = 0
else:
rc = 1
print rc