我正在 python 应用程序中创建一个模块,我有我的主要代码文件,我想从帮助程序文件夹中导入一些帮助程序方法/类。这是我的文件夹结构:module: __init__.py helpers: __init__.py some_class.py这是module/helpers/__init__.py文件: from .some_class import SomeClass def helper_method_1(): # code def helper_method_2(): # code所以我的问题是:SomeClass在module/helpers/__init__.py内部导入是否helpers足以像在我的主module/__init.py文件中导入一样使用它?这就是我正在尝试的 module/__init__.pyfrom .helpers import (SomeClass, helper_method_1, helper_method_2)我正在做一堆事情,所以目前无法测试它是否有错误
添加回答
举报
0/150
提交
取消