python判斷字元串中是否包含子字元串 s = '1234問沃爾沃434' if s.find('沃爾沃') != -1: print('存在') else: print('不存在') ...
python判斷字元串中是否包含子字元串
s = '1234問沃爾沃434'
if s.find('沃爾沃') != -1:
print('存在')
else:
print('不存在')
python判斷字元串中是否包含子字元串 s = '1234問沃爾沃434' if s.find('沃爾沃') != -1: print('存在') else: print('不存在') ...
python判斷字元串中是否包含子字元串
s = '1234問沃爾沃434'
if s.find('沃爾沃') != -1:
print('存在')
else:
print('不存在')