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