Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

changing instance variable python inheritance

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)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #changing #instance #variable #python #inheritance
ADD COMMENT
Topic
Name
4+1 =