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