41 lines
913 B
Python
Executable file
41 lines
913 B
Python
Executable file
n = 32
|
|
|
|
for x in range (1,13):
|
|
for jour in range(1,n):
|
|
print(jour, end="")
|
|
if x == 1 :
|
|
print(" janvier")
|
|
n=29
|
|
if x == 2 :
|
|
print(" février")
|
|
n=32
|
|
if x == 3 :
|
|
print(" mars")
|
|
n=31
|
|
if x == 4 :
|
|
print(" avril")
|
|
n=32
|
|
if x == 5 :
|
|
print(" mai")
|
|
n=31
|
|
if x == 6 :
|
|
print(" juin")
|
|
n=32
|
|
if x == 7 :
|
|
print(" juillet")
|
|
n=32
|
|
if x == 8 :
|
|
print(" août")
|
|
n=31
|
|
if x == 9 :
|
|
print(" septembre")
|
|
n=32
|
|
if x == 10 :
|
|
print(" octobre")
|
|
n=31
|
|
if x == 11 :
|
|
print(" novembre")
|
|
n=32
|
|
if x == 12 :
|
|
print(" décembre")
|
|
|