06.03 Python – Clases – atributos como tupla o diccionario

class Persona:
    def __init__(self, nombre, edad, *args,**kwargs):
        self.nombre=nombre
        self.edad=edad
        self.valores=args
        self.dic=kwargs

    def __str__(self):
        return f"Nombre: {self.nombre} edad: {self.edad} valores: {self.valores} Dic: {self.dic}"



p = Persona("Javi",56,1,2,3,4,5,m="manzana",p="pera")

print(p.nombre)
print(p.edad)
print(p.valores)
print(p.dic)

print(p)

print(p.valores[4])
print(p.dic['p'])

Related Posts