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