leap year solution code example
Example 1: leap year algorithm
def isLeapYear (year):
if ((year % 4 == 0) and (year % 100 != 0)) or (year % 400 == 0):
true
else:
false
Example 2: leap year
import calendar
def is_leap(year):
return calendar.isleap(year)