📜  更改实例变量 python 继承 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:10.737000             🧑  作者: Mango

代码示例1
from fileA import Parent

class Child(Parent):
    def __init__(self):
        Parent.__init__():
        self.valueB = 10

    def Calculate(self):
        self.result = self.valueB + self.valueA
        print(self.result)