Translations:Dimensionner la récupération d'eau de pluie pour être autonome/169/en

  1. Ask user to enter the final month of the summer period

moisfinete = input("Enter the ending month for the extra water consumption of summer period (1,2,3,4,5,6,7,8,9,10,11,12): ") try:

   _=int(moisfinete)
   moisfinete=_

except Exception as err:

   moisfinete=9
   print(f"\nerreur de type ou valeur utilisateur vide, poursuite avec utilisation de moisfinete={moisfinete}")