module.py
def example1():
_var1=8
return _var1
def example2:
_var2=10
return _var2
Test.py
from module import example1, example2
_var3=example1()
var3=example2()
**函数example1和example2在单独的文件模块中定义。 y然后,我将两个函数导入test1.py中。我在函数和test1.py
中使用单个前导下划线变量据我了解,在变量名之前使用单个前划线会对其行为没有影响,只是按照惯例告诉变量是供内部使用。但是我仍然需要确认是否可以在代码中使用它?我使用单引号下划线的原因仅出于我的代码可读性。