From 4fac13603f9b42065d3bdd2006df77bb6f33d3bb Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 30 Nov 2021 21:20:39 +0100 Subject: [PATCH] add 2 digit after the comma --- stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stats.py b/stats.py index 9f1de6d..b011cae 100644 --- a/stats.py +++ b/stats.py @@ -77,7 +77,7 @@ class Stats(): # On rajoute la case fichier[locationUtilisateur] += ['0' for _ in range(0, locationDate - 1)] 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 ecriture = csv.writer(f)