从集合导入defaultdict

时间:2020-05-30 09:38:54

标签: python dictionary collections defaultdict

为什么当我没有将 defaultdict 默认值设置为零(int)时,我的以下程序没有给我结果:

>>> doc
'A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot, which was created for the bliss of souls like mine. I am so happy'
>>> some = defaultdict()
>>> for i in doc.split():
...  some[i] = some[i]+1
...
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
KeyError: 'A'
>>> some
defaultdict(None, {})
>>> i
'A'

但是它可以使用默认值

>>> some = defaultdict(int)
>>> for i in doc.split():
...  some[i] = some[i]+1
...
>>> some
defaultdict(<class 'int'>, {'A': 1, 'wonderful': 1, 'serenity': 1, 'has': 1, 'taken': 1, 'possession': 1, 'of': 4, 'my': 2, 'entire': 1, 'soul,': 1, 'like': 2, 'these': 1, 'sweet': 1, 'mornings': 1, 'spring': 1, 'which': 2, 'I': 3, 'enjoy': 1, 'with': 1, 'whole': 1, 'heart.': 1, 'am': 2, 'alone,': 1, 'and': 1, 'feel': 1, 'the': 2, 'charm': 1, 'existence': 1, 'in': 1, 'this': 1, 'spot,': 1, 'was': 1, 'created': 1, 'for': 1, 'bliss': 1, 'souls': 1, 'mine.': 1, 'so': 1, 'happy': 1})
>>>

您能说出为什么这样工作吗?

1 个答案:

答案 0 :(得分:1)

如文档所述:

第一个参数提供default_factory的初始值 属性;它默认为None。所有剩余的参数都被处理 就像将它们传递给dict构造函数一样,包括 关键字参数。

因此,如果您只写defaultdict而没有将任何值传递给构造函数,则默认值将设置为None 看到输出:

some = defaultdict()
print(some)    # defaultdict(None, {}) 

并且当值设置为None时,您将无法执行:some[i] = some[i]+1
因此,您必须将默认值显式设置为intsome = defaultdict(int)