TypeError:模块对象不可调用

时间:2014-04-23 09:21:57

标签: python

简单的问题,但我只知道它为什么会发生。

>>>help(max)

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'module' object is not callable

1 个答案:

答案 0 :(得分:2)

您已导入名为help的模块。

有两种解决方法:

  1. 直接访问内置函数,绕过全局模块名称:

    __builtins__.help(max)
    
  2. 删除help全局删除它:

    del help