exercism/python/leap/leap.py
anthony.cicchetti 5f9cd49d7a initial commit
2017-04-25 15:51:48 -04:00

8 lines
201 B
Python

def is_leap_year(year):
if (year % 4 == 0):
if (year % 100 == 0):
if (year %400 == 0):
return True
return False
return True
return False