在Counter字典

时间:2018-04-23 10:18:57

标签: python python-3.x dictionary counter

我有一本字典,显示了“女人”在电影剧本中说了多少个单词。现在我想要加上字典的值,这样我就可以得到'WOMAN'所说的单词的总数。 有没有办法实现这个目标?

'WOMAN': Counter({'Mia': 4,
                           'a': 4,
                           'the': 4,
                           'and': 3,
                           'is': 3,
                           'on': 3,
                           '--': 3,
                           'it': 2,
                           'Then': 2,
                           'STUDIO': 2,
                           'Cappuccino,': 1,                              
                           'from': 1,
                           'her.': 1,
                           'No,': 1,
                           'I': 1,
                           'insist.': 1,
                           'She': 1,
                           'pays.': 1,
                           'smiles': 1,
                           'at': 1,
                           'drops': 1,
                           'bill': 1,
                           'in': 1,
                           'tip': 1,
                           'jar.': 1,
                           'watches': 1,
                           'as': 1,
                           'Woman': 1,
                           'walks': 1,
                           'off,': 1,
                           'joined': 1,
                           'screen:': 1,
                           '4:07.': 1})})

2 个答案:

答案 0 :(得分:1)

从文档here开始,您可以使用d = {'women':Counter()} sum(d['women'].values())

{{1}}

答案 1 :(得分:1)

假设您必须预先拆分字符串以提取字词,您可以计算较早阶段的字数:

from collections import Counter

x = 'this is a test string with this string repeated'

words_split = x.split()

count, c = len(words_split), Counter(words_split)

print(count)
# 9

print(c)
# Counter({'this': 2, 'string': 2, 'is': 1, 'a': 1, 'test': 1, 'with': 1, 'repeated': 1})