关于python:仅导入其他模块中的变量

Importing only variables from other module

我知道有一种方法(这里提到)可以使用

1
from testmodule import *

由于在访问定义时使用"*"会导致一些混乱,如何仅从模块中导入变量?


您必须指定每个变量。

1
2
3
from testmodule import (
    DEF1, DEF2, DEF3, ...
)


可以导入特定变量:

1
from testmodule import variable_name