TypeError: ‘dict‘ object is not callable

TypeError: 'dict' object is not callable
TypeError: 'str' object is not callable

错误:

        TypeError: 'xx' object is not callable 是由于函数名与变量名冲突导致的。

解释:

        dict() 和 str() 函数都是系统自带的,如果前面以dict、str定义了变量名,在调用函数时就会发生冲突,进而报错。

解决办法:

        删除之前定义的变量。

        语句:del dict, str

你可能感兴趣的:(python学习,python,开发语言)