15 lines
483 B
Python
15 lines
483 B
Python
class Menu:
|
|
|
|
def items(self):
|
|
print("[1] Créer un nouveau tournoi", end='\n')
|
|
print("[2] Enregistrer un nouveau joueur", end='\n')
|
|
print("[3] Rapports", end='\n')
|
|
print("[4] Quitter", end='\n')
|
|
|
|
|
|
def rapports():
|
|
print("[1] Afficher la liste des joueurs", end='\n')
|
|
print("[2] Afficher l'historique des tournois", end='\n')
|
|
print("[3] Afficher le détail d'un tournoi", end='\n')
|
|
print("[4] Quitter", end='\n')
|