gpt4 book ai didi

python - defaultdict 未定义

转载 作者:IT老高 更新时间:2023-10-28 21:05:39 31 4
gpt4 key购买 nike

使用 python 3.2。

import collections
d = defaultdict(int)

运行

NameError: name 'defaultdict' is not defined

我已重新启动空闲。我知道正在导入集合,因为键入

collections

结果

<module 'collections' from '/usr/lib/python3.2/collections.py'>

还有 help(collections) 向我显示了帮助,包括 defaultdict 类。

我做错了什么?

最佳答案

>>> import collections
>>> d = collections.defaultdict(int)
>>> d
defaultdict(<type 'int'>, {})

您应该阅读the import statement .

关于python - defaultdict 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17767084/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com