gpt4 book ai didi

python - 类型错误 : 'dict' object is not callable from main

转载 作者:行者123 更新时间:2023-11-28 20:05:41 25 4
gpt4 key购买 nike

我编写了一段代码,用于存储文本文件中出现的单词并将其存储到字典中:

class callDict(object):
def __init__(self):
self.invertedIndex = {}

然后我写一个方法

def invertedIndex(self):
print self.invertedIndex.items()

下面是我的调用方式:

if __name__ == "__main__":
c = callDict()
c.invertedIndex()

但它给了我错误:

Traceback (most recent call last):
File "E\Project\xyz.py", line 56, in <module>
c.invertedIndex()
TypeError: 'dict' object is not callable

我该如何解决?

最佳答案

您在代码中定义了一个方法和一个实例变量,两者同名。这将导致名称冲突,从而导致错误。

更改一个或另一个的名称以解决此问题。

例如,这段代码应该适合您:

class CallDict(object):
def __init__(self):
self.inverted_index = {}
def get_inverted_index_items(self):
print self.inverted_index.items()

并使用以下方法检查:

>>> c = CallDict()
>>> c.get_inverted_index_items()
[]

另请查看 ozgur's answer使用 @property 执行此操作装饰器。

关于python - 类型错误 : 'dict' object is not callable from main,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28505683/

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