从Python的本地模块导入*

时间:2019-04-11 14:19:57

标签: python python-3.x import module

我可以这样导入本地模块(同一目录中的文件):

from . import local_module

但是,我找不到从该模块访问import *的方法。像这样:

from . import * from local_module

很好,但是不能编译。我该怎么办?

2 个答案:

答案 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 *