我正在尝试在大型文本文件中搜索单词列表。我认为列表会更容易,而不是为每个单词一遍又一遍地运行命令,但我不确定如何去做。下面的脚本或多或少适用于字符串值,但我想用“dict”列表的每个值替换下面的“字符串”。
import csv
count = 0
dic = open('dictionary','r') #changed from "dict" in original post
reader = csv.reader(dic)
allRows = [row for row in reader]
with open('bigfile.log','r') in inF:
for line in inF:
if 'string' in line: #<---replace the 'string' with dict values
count += 1
count