From 1e19016823162caab4124ea794412084337c300a Mon Sep 17 00:00:00 2001 From: "corentin.bollet" Date: Fri, 3 Feb 2023 09:36:39 +0100 Subject: [PATCH] fonction totalPoints finie --- basket.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/basket.py b/basket.py index 10931b3..2db9ec8 100644 --- a/basket.py +++ b/basket.py @@ -10,6 +10,13 @@ def reussite(joueur, action): if ligne[0] == joueur and ligne[1].split('-')[1] == "reussi": nb_reussite_action += 1 return nb_action, nb_reussite_action -def total_points(): - #c'est un test +def totalPoints(joueur): + #théoriquement ça fonctionne mais on ne puet pas le tester tout de suite. + with open('stats.txt', 'r') as stats: + nb_total_points = 0 + for ligne in stats: + ligne = ligne.strip().split(' ') + coord_x, coord_y = int(ligne[3]), int(ligne[4]) + nb_total_points += points(coord_x, coord_y) + return nb_total_points return True \ No newline at end of file