Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify

is_leap_year.py
Views: 392 | Author: abh
def is_leap_year(year):
    if not year % 100:
        return not year % 400
    return not year % 4

Comments