1. Description de la fonction Python hasattr()
La fonction Python hasattr() renvoie True si un objet a l'attribut nommé fourni en paramètres et False dans le cas contraire.
2. Syntaxe & paramètres
Syntaxe
1 |
hasattr(objet, name) |
Paramètres
- objet: objet dont l'attribut nommé doit être vérifié
- name: nom de l'attribut à rechercher
Exemple
1 2 3 4 5 6 7 8 9 10 11 12 13 |
class Personne: age = 19 name = "Robert" personne = Personne() # verification de l'attribut 'age' print("Age personne :", hasattr(personne, "age")) # output: Age personne : True # verification de l'attribut email print("Email personne :", hasattr(personne, "email")) # output: Email personne : False |
Younes Derfoufi
CRMEF OUJDA
1 thought on “La fonction Python hasattr()”