From 3e82faf8725e680bf272d0ce39f1ff64b2cc2cb2 Mon Sep 17 00:00:00 2001 From: thomas neveu Date: Tue, 19 May 2026 11:42:13 +0200 Subject: [PATCH] fonction numerojour enfi fini --- projet_conso.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projet_conso.py b/projet_conso.py index 9d9c4e8..b2326e1 100644 --- a/projet_conso.py +++ b/projet_conso.py @@ -33,7 +33,7 @@ def numerojour(date) : separation = date.split("-") annee = int(separation[0]) mois = int(separation[1]) - jour = int(separtation[2]) + jour = int(separation[2]) jours_mois = [31,28,31,30,31,30,31,31,30,31,30,31] if estbissextile(annee) : jours_mois[1] = 29