admin管理员组文章数量:1344970
[edit] This question doesn't realy make sens and this situation could be avoided, being caused by a lack of effort from my part. Feel free to downvote to close.
I have two files : file0
which has a object Obj
containing variables and file1
which needs these variables.
Here is the code:
file0 :
class A :
def __init__(self) :
self.v0 = 0
self.v1 = 1
Obj = A()
file1 :
from file1 import Obj
v0 = Obj.v0
v1 = Obj.v1
del Obj
print(v0, v1)
Is there a more efficient way to do this. I have tried from file0 import Obj.v0 as v0
and from file0.Obj import v0
but I get errors for both. Would someone now a better solution ? By better I mean a solution that imports directly v0 and v1 without Obj. I prefer not to declare Obj
in file1
because file0
is the main file doing most of the logic, but file1
needs to acces them. I cannot just use a variable in each file that I declare with the same value. I could merge the two files but for readability reasons, it wouldn't be practical.
[edit] This question doesn't realy make sens and this situation could be avoided, being caused by a lack of effort from my part. Feel free to downvote to close.
I have two files : file0
which has a object Obj
containing variables and file1
which needs these variables.
Here is the code:
file0 :
class A :
def __init__(self) :
self.v0 = 0
self.v1 = 1
Obj = A()
file1 :
from file1 import Obj
v0 = Obj.v0
v1 = Obj.v1
del Obj
print(v0, v1)
Is there a more efficient way to do this. I have tried from file0 import Obj.v0 as v0
and from file0.Obj import v0
but I get errors for both. Would someone now a better solution ? By better I mean a solution that imports directly v0 and v1 without Obj. I prefer not to declare Obj
in file1
because file0
is the main file doing most of the logic, but file1
needs to acces them. I cannot just use a variable in each file that I declare with the same value. I could merge the two files but for readability reasons, it wouldn't be practical.
1 Answer
Reset to default 2It depends on what you need. Remember that ALL of the names in an imported file are available, so you COULD do:
# file0.py
v0 = 0
v1 = 1
# file1.py
from file0 import v0, v1
print(v0,v1)
Is that better? Well, it depends.
本文标签: pythonEfficient importStack Overflow
版权声明:本文标题:python - Efficient import - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743754901a2533328.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
Obj = A()
should happen in file1 not file2. – JonSG Commented 12 hours ago