LU05.L06: Leap year

def main():
    year = int(input('Give a year:\n'))
    if year % 400 == 0:
        print('The year is a leap year.')
    elif (year % 4 == 0) and (year % 100 != 0):
        print('The year is a leap year.')
    else:
        print('The year is not a leap year.')
 
 
if __name__ == '__main__':
    main()

Kevin Maurizi, Marcel Suter

  • de/modul/m319/learningunits/lu05/loesungen/leapyear.txt
  • Zuletzt geändert: 2025/06/23 07:45
  • von msuter