ventilaar
/
twitter_zuil
Archived
1
Fork 0
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/homework PROGA/pe_7_1.py

16 lines
344 B
Python

def seizoen(maand):
# check of waarde klopt geligheid 1 t/m 12
if maand < 1 or maand >= 13:
return "ongeldig"
elif maand <= 2 or maand == 12:
return "winter"
elif maand <= 5:
return "lente"
elif maand <= 8:
return "zomer"
elif maand <= 11:
return "herfst"
input = int(input("Geef een maand in nummer: "))
print(seizoen(input))