TypeError:'dict' object is not callable
Posted li6322298
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError:'dict' object is not callable相关的知识,希望对你有一定的参考价值。
TypeError:‘dict‘ object is not callable
出现这种错误有两种可能:
1. 代码里重新定义了dict,比如 dict= {...},这时调用的是代码里定义的dict而不是python内置类型
2. 取字典内容时用了()而不是[]。比如sdict("content_id"),应该是sdict["content_id"]
以上是关于TypeError:'dict' object is not callable的主要内容,如果未能解决你的问题,请参考以下文章
TypeError:'dict' object is not callable
TypeError: 'dict_keys' object is not subscriptable
python3错误之TypeError: 'dict_items' object is not callable
TypeError: can't pickle dict_values objects
TypeError: the JSON object must be str, bytes or bytearray, not dict