Python: TypeError: 'dict' object is not callable

Posted 筱筱的春天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python: TypeError: 'dict' object is not callable相关的知识,希望对你有一定的参考价值。

问题:  TypeError: ‘dict‘ object is not callable

原因:  dict()是python的一个内建函数,如果将dict自定义为一个python字典,在之后想调用dict()函数是会报出“TypeError: ‘dict‘ object is not callable”的错误,

解决办法:  >>>del (dict)

 

以上是关于Python: TypeError: 'dict' object is not callable的主要内容,如果未能解决你的问题,请参考以下文章

Python: TypeError: 'dict' object is not callable

2. python提示:TypeError: unhashable type: 'list'

python: "TypeError: 'type' object is not subscriptable"

Python TypeError:'bool'对象不可调用[重复]

TypeError:使用Python Click库无法调用'str'对象

Python_报错:TypeError: file must have 'read' and 'readline' attributes