使用python3,我有一个单词列表,如:
['foot', 'stool', 'carpet']
这些列表的长度从1-6左右不等。我需要检查成千上万的字符串,并且需要确保标题中包含所有三个单词。哪里:
'carpet stand upon the stool of foot balls.'
这是一个正确的匹配,因为所有的单词都在这里,即使它们出了故障。
for word in list: if word in title: match!
但这会给我'carpet cleaner'
这样的结果不正确。我觉得有一种快捷方式可以做到这一点,但我似乎无法使用过多的list(), continue, break
或其他尚未熟悉的方法/术语来解决这个问题。等等。