简单的问题,但我只知道它为什么会发生。
>>>help(max)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'module' object is not callable
答案 0 :(得分:2)
您已导入名为help
的模块。
有两种解决方法:
直接访问内置函数,绕过全局模块名称:
__builtins__.help(max)
删除help
全局删除它:
del help