标签: python python-3.x
我知道有一种方法(提到here)使用
from testmodule import *
由于在访问定义时使用'*'会导致一些混淆,我如何只导入模块中的变量?
答案 0 :(得分:1)
您必须指定每个变量。
from testmodule import ( DEF1, DEF2, DEF3, ... )
答案 1 :(得分:0)
您可以导入特定变量:
from testmodule import variable_name