1. 程式人生 > >TypeError:'dict' object is not callable

TypeError:'dict' object is not callable

peer 錯誤 not typeerror obj dict 而不是 pytho pos

TypeError:‘dict‘ object is not callable

出現這種錯誤有兩種可能:

1. 代碼裏重新定義了dict,比如 dict= {...},這時調用的是代碼裏定義的dict而不是python內置類型

2. 取字典內容時用了()而不是[]。比如sdict("content_id"),應該是sdict["content_id"]

TypeError:'dict' object is not callable