class Personne:
def __init__(self, nom, prenom, age, taille):
self.nom = nom
self.prenom = prenom
self.age = age
self.taille = taille
def showtaille(self):
return self.taille
loic = Personne("Darras","Loic", 22, 176)
print(loic.nom)
print(loic.showtaille())
To embed this project on your website, copy the following code and paste it into your website's HTML: