add 2 digit after the comma
This commit is contained in:
parent
20f36785ba
commit
4fac13603f
1 changed files with 1 additions and 1 deletions
2
stats.py
2
stats.py
|
@ -77,7 +77,7 @@ class Stats():
|
||||||
# On rajoute la case
|
# On rajoute la case
|
||||||
fichier[locationUtilisateur] += ['0' for _ in range(0, locationDate - 1)]
|
fichier[locationUtilisateur] += ['0' for _ in range(0, locationDate - 1)]
|
||||||
ancienPrix += prix # on y ajoute le nouveaux prix
|
ancienPrix += prix # on y ajoute le nouveaux prix
|
||||||
fichier[locationUtilisateur][locationDate] = ancienPrix # on met à jour le fichier
|
fichier[locationUtilisateur][locationDate] = f"{float(ancienPrix):.2f}" # on met à jour le fichier
|
||||||
|
|
||||||
with open("stats.csv", 'w') as f: # on applique les changements
|
with open("stats.csv", 'w') as f: # on applique les changements
|
||||||
ecriture = csv.writer(f)
|
ecriture = csv.writer(f)
|
||||||
|
|
Reference in a new issue