Ejemplo n.º 1
0
 def __init__(self, name, occupants):
     Room.__init__(self, 'living space', name, len(occupants))
     self.occupants = occupants
Ejemplo n.º 2
0
 def __init__(self, name, occupants):
     Room.__init__(self, 'office', name, len(occupants))
     self.occupants = occupants