add 2 digit after the comma

This commit is contained in:
Mylloon 2021-11-30 21:20:39 +01:00
parent 20f36785ba
commit 4fac13603f

View file

@ -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)