I'm trying something very basic with Python inheritance:
class Parent:
    def __init__(self):
        self.text = 'parent'
    def getText(self):
        print self.text
class Child1(Parent):
    def __init__(self):
        self.x = 'x'
class Child2(Parent):
    def __init__(self):
        self.x = 'x'
if __name__ == "__main__": 
    parent = Parent()
    child1 = Child1()
    child2 = Child2()
    parent.getText()
    child1.getText()
    child2.getText()
but I keep getting
Child1 instance has no attribute 'text'
how are variables passed to children?
 
     
     
     
    