def isYearLeap(year): # Leap year formula if year % 4 == 0 and year % 100 != 0 : return True elif year % 400 == 0 : return True