我可以这样导入本地模块(同一目录中的文件):
from . import local_module
但是,我找不到从该模块访问import *
的方法。像这样:
from . import * from local_module
很好,但是不能编译。我该怎么办?
答案 0 :(得分:1)
thread.raise_exception()
thread.join()
注意模块名称前面的from .local_module import *
答案 1 :(得分:1)
通常,导入语法为:
import <something>
from <there> import <something>
from <there> import <something> as <name>
在您的情况下,您只需写:
from local_module import *
以及相对进口:
from .local_module import *