我在基类中有import语句:
base.py
import x
import y
import z
Class Base {
...
}
child.py
import x
import y
import z
Class Child(Base) {
...
}
如何消除两个类之间导入x,y,z的冗余?
答案 0 :(得分:0)
据我所知,最佳做法是将所有输入明确保留。就像他们现在的样子一样。
但是,您可能需要从base
导入child
才能继承Base
。当您import base
,x
,y
,z
和Base
可用base.x
,base.y
,{{1 }和base.z
。