gpt4 book ai didi

python - 如何使用关键字从 txt 文件中搜索和检索整行

转载 作者:太空宇宙 更新时间:2023-11-03 17:45:48 26 4
gpt4 key购买 nike

searchfile =open('test.txt','r')
for line in searchfile:
if line in array: print line
searchfile.close()

搜索工作正常,除了我有一个 keywords.txt 文档,其中包含诸如“绿色,蓝色等”之类的简单单词(全部在自己的行上),然后当我使用它时,我有一个包含诸如“我的衬衫是绿色”之类的文本的文档code 它不会找到任何东西,但如果我将 txt 文件中的句子更改为一个单词,它就会找到它。我需要它来搜索文档中的关键字,然后显示它所在的整行。

最佳答案

searchfile = open('keywords.txt', 'r')
infile = open('text.txt', 'r')

for keywords in searchfile:
for lines in infile:
if keywords in lines:
print lines

关于python - 如何使用关键字从 txt 文件中搜索和检索整行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29820740/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com