def factorielle(x):
if x == 0:
return 1
else:
return x * factorielle(x-1)
class Etudiant(Personne):
def __init__(self, classe, nom, prenom=´´):
Personne.__init__(self, nom, prenom)
self.classe = classe
def afficher_statut(self):
Personne.afficher_nom(self)
print self.classe
Facile le python 