def input_files(file):
s=0
#word=raw_input('enter the word you want to search\n')
file=file.readlines()
for lines in file:
if word in lines:
s+=lines.count(word)
print s
word=raw_input('enter the word you want to search\n')
file =open("2.txt")
file2=open("3.txt")
input_files(file)
input_files(file2)
这是我正在做的代码,现在我得到了我想要的结果,但现在我想让我的代码成熟。我不想一次又一次地调用方法来读取文本文件,例如,如果我有数据集的 39 个文本文件,所以我必须调用函数 39 TIMES 这已经足够了,所以如果有人知道我不必一次又一次调用该方法的方式,它只会自动获取文本文件并显示它们的输出和根据哪个文件有更多单词的结果对它们进行排名。