Answers
我的测试环境的
python 3.4
题主,我建立了一个Project测试了一下,文件结构如下:
project_test/
|---test.py
|---test|--- init .py
可见,test是一个package
__init__.py
中:
python
class module_1: print('This is a test!') pass
当我在test.py中
import test
,运行
输出的结果是:
This is a test
说明,在
import
这个
package
的时候,该类自动就实例化了, 这样, 对于你的问题,应该直接调用就好~
扑翼飞行小裤裤
answered 9 years, 9 months ago