首页 > 代码库 > 报错"module" object is not callable

报错"module" object is not callable

由于未找到原作者出处,只能说从这个博客上学习了:转自http://blog.csdn.net/liuyuehui110/article/details/7249307

原因分析:

Python 导入模块有两种方式:

  • import module
  • from module import *

区别是前者导入的模块使用时要加上模块名module的限定,后者不需要

如图:我们需要改成:

ct = ClassTest.ClassTest(‘tet‘,50)

方能正常运行。

报错"module" object is not callable