From 209467b9d104bb5291fb7a36b02dd592dafaec21 Mon Sep 17 00:00:00 2001 From: "mansat.t" <> Date: Thu, 13 Mar 2025 17:57:51 +0100 Subject: [PATCH] fonctionnelle 100 --- fonction_totalPoints.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/fonction_totalPoints.py b/fonction_totalPoints.py index 79832d2..9bd8c58 100644 --- a/fonction_totalPoints.py +++ b/fonction_totalPoints.py @@ -11,14 +11,12 @@ def totalPoints (joueur): if lst_elements[1]=="tir-reussi": x = lst_elements[2] y = lst_elements[3] - #print(lst_elements[0],lst_elements[1],x,y) total_pts = total_pts + points(x,y) - #print(points(x,y)) return total_pts - - + """tests""" +""" for i in range (1,11): joueur = "J" + str(i) print(joueur,totalPoints(joueur)) @@ -26,3 +24,4 @@ for i in range (1,11): for i in range (1,11): joueur = "J" + str(i) + "V" print(joueur,totalPoints(joueur)) +""" \ No newline at end of file