0

我有一个字符串,字典形式为:

('the head', {'exploded': (3.5, 1.0), 'the': (5.0, 1.0), 
"puppy's": (9.0, 1.0), 'head': (6.0, 1.0)})

每个括号是对应于(分数,标准差)的元组。我只取每个元组中第一个整数的平均值。我试过这个:

def score(string, d):
    for word in d:
        (score, std) = d[word]
        d[word]=float(score),float(std)
        if word in string:
            word = string.lower()
            number = len(string)
            return sum([v[0] for v in d.values()]) / float(len(d))
        if len(string) == 0:
            return 0

当我运行时:

print score('the head', {'exploded': (3.5, 1.0), 'the': (5.0, 1.0), 
"puppy's": (9.0, 1.0), 'head': (6.0, 1.0)})

我应该得到5.5,但我得到了5.875。无法弄清楚我的函数中有什么不允许我得到正确的答案。

4

1 回答 1

1
def score(s, d):
    included = [d[word][0] for word in d if word in s]
    return sum(included) / float(len(included))
于 2012-10-20T22:58:06.457 回答