我想知道如何使用Python3在.txt文件中搜索特定单词。 如果.txt文件中包含“pizza”一词,那么它应该(例如)导入另一个python程序。
答案 0 :(得分:0)
您可以使用'for'循环遍历文件中的每一行,并检查字符串是否在行中:
f = open('file.txt', 'r')
for line in f:
if 'pizza' in line:
# do whatever you want here
print("Found it!")
else:
pass