|
@ -10,6 +10,10 @@ def reussite(joueur, action): |
|
|
if ligne[0] == joueur and ligne[1].split('-')[1] == "reussi": |
|
|
if ligne[0] == joueur and ligne[1].split('-')[1] == "reussi": |
|
|
nb_reussite_action += 1 |
|
|
nb_reussite_action += 1 |
|
|
return nb_action, nb_reussite_action |
|
|
return nb_action, nb_reussite_action |
|
|
|
|
|
def points (x, y): |
|
|
|
|
|
with open("stats.txt","r") as stats : |
|
|
|
|
|
for ligne in stats: |
|
|
|
|
|
|
|
|
def totalPoints(joueur): |
|
|
def totalPoints(joueur): |
|
|
#théoriquement ça fonctionne mais on ne puet pas le tester tout de suite. |
|
|
#théoriquement ça fonctionne mais on ne puet pas le tester tout de suite. |
|
|
with open('stats.txt', 'r') as stats: |
|
|
with open('stats.txt', 'r') as stats: |
|
|