我有一个文本文件,它包含格式中的字符串列表;
苹果,
爸爸,
母亲,
姐姐,
兄弟,
猫,
我有一个句子作为My dad is a vegetarian
。我需要检查我的句子中是否有任何文本与文本文件中的文本相匹配。
我的代码:
def matchString(t):
with open("fil.txt") as fle:
for item in fle:
if( fle.readlines()== ) # I couldn't code after this point.
我想要做的是检查此文本中的字符串是否My dad is a vegetarian
与文件中的任何字符串匹配,然后我想将其打印到控制台。