Spaces:
Sleeping
Sleeping
File size: 669 Bytes
aadd23b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
class Debouche:
def __init__(self, nom, marche_emploi, salaire_moyen, taux_emploi, perspectives_croissance):
self.nom = nom
self.marche_emploi = marche_emploi
self.salaire_moyen = salaire_moyen
self.taux_emploi = taux_emploi
self.perspectives_croissance = perspectives_croissance
def afficher_info(self):
return (f"Débouché: {self.nom}\n"
f" Marché de l'emploi: {self.marche_emploi}\n"
f" Salaire moyen: {self.salaire_moyen} €/an\n"
f" Taux d'emploi: {self.taux_emploi}%\n"
f" Perspectives de croissance: {self.perspectives_croissance}\n") |