Example #1
0
 def __init__(self):
     self.organic = False
     Flower.__init__(self, "pink")
     Organic.__init__(self)
Example #2
0
 def __init__(self, color):
     self.color = color
     self.stem_length = 4
     Flower.__init__(self, purple)
Example #3
0
 def __init__(self):
     self.stem_length = 4
     Organic.__init__(self)
     Flower.__init__(self, "orange")
 def __init__(self):
     Flower.__init__(self)
     IValentines.__init__(self)
Example #5
0
 def __init__(self):
     self.stem_length = 4
     Organic.__init__(self)
     Flower.__init__(self, yellow)