La fonction Python delattr() comme son nom l'indique est une fonction qui permet de supprimer un attribut d'un objet.
Syntaxe
delattr(objet , 'attribut')
Exemple
1 2 3 4 5 6 7 8 9 10 11 12 13 |
class Personne: def __init__(self,nom,age): self.nom = nom self.age = age # création d'un objet d'instance P = Personne("Albert",27) # afficher l'attribut nom print(P.nom) # affiche : Albert # supprimer l'attribut nom à l'aide de la fonction delattr() delattr(P , 'nom') print(P.nom) # affiche l'erreur: 'Personne' object has no attribute 'nom' |
Younes Derfoufi
CRMEF OUJDA
1 thought on “La fonction Python delattr()”