python引入模块报错:TypeError: ‘module‘ object is not callable,解决办法记录
Posted wyy_persist
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python引入模块报错:TypeError: ‘module‘ object is not callable,解决办法记录相关的知识,希望对你有一定的参考价值。
在A.py文件中引入同一个包下面的B.py文件时,出现了错误:
TypeError: 'module' object is not callable
项目结构
在demo文件夹下有A和B两个py文件,如下:
--demo
-----__init__.py
-----A.py
-----B.py
在A中使用的语句为:
from demo import B
testNumber = B(parameter_one, parameter_two);# 需求:在A中初始化B中的一个对象
解决办法
将上述的初始化代码改为如下即可:
from demo import B
testNumber = B.B(parameter_one, parameter_two);# 需求:在A中初始化B中的一个对象
将 B() 改为 B.B() 即可。
在此记录一下在写python代码过程中出现的报错。
以上是关于python引入模块报错:TypeError: ‘module‘ object is not callable,解决办法记录的主要内容,如果未能解决你的问题,请参考以下文章
python 报错——Python TypeError: 'module' object is not callable 原因分析
python引入模块时import与from ... import的区别
python引入模块时import与from ... import的区别(转)
报错VM1548 WAService.js:2 TypeError: Cannot read property ‘commit‘ of undefined