这是列表:
keyWord = ['gold', 'diamond', 'wood']
并且,乐谱的文本文件包括如下细节。例如,文本文件的名称是 point.txt
diamond 1
copper 2
wood 3
gold 4
在文本文件中,单词和数字之间的空格由制表符分隔。
我想使用这个分数的文本文件和 python 来获得关键字列表的总点。
我的代码是这样的......
import re
open_file = open("point.txt")
points = {}
for line in open_file:
item, score = line.split("\t")
points[item] = int(score)
if item == re.findall('[\w\']+', keyWord):
我不知道如何编写代码来获得正则表达式的总分。(我认为“IF”句子有问题。)
我会等待你的大力帮助。