Return True if y is a leap year (divisible by 4, except centuries not divisible by 400).
Write is_leap_year(y).
Starter:
def is_leap_year(y):
# TODO
pass
Solve it interactively in your browser (no setup), check your answer instantly, and keep your daily streak going on IWTLP: https://iwtlp.com/challenge
Top comments (0)