在python中,我試圖檢查一個單詞是否與包含在單詞列表中的另一個單詞匹配。目前我正在使用試圖找到整個單詞,而不僅僅是部分單詞Python
if word in listOfWords:
return True
但是即使列表中只有部分單詞出現,也會返回True。 AKA如果我這樣做:
word = 'apple'
listOfWords = ['applesauce']
if word in listOfWords:
return True
它會返回True。任何幫助?
不,它止跌」 t – happydave
蘋果一詞在蘋果醬中,因此我很確定它會返回True, ouldn't。 – bob
但蘋果這個詞不在列表中,所以它不會 – happydave