# To change this template, choose Tools | Templates # and open the template in the editor. __author__="nexo" __date__ ="$17/10/2012 06:32:45 PM$" from lugar import Lugar class Playa(Lugar): def cargarDatos(self): self.nombre = "playa" self.cosasPermitidas = [("chancletas", 2), ("gorrosol", 1), ("short", 1), ("biquini", 1), ("lentes", 2), ("sombrero", 3)] if __name__ == "__main__": print "Hello World"