class Mascota: def __init__(self, nombre, edad): self.nombre = nombre self.edad = edad toby = Mascota("Toby", 7)