Answers for "how to write a function that check leap year in python"

5

python leap year solution

def is_leap(year):
   return year % 4 == 0 and (year % 100 != 0 or year % 400 == 0)
Posted by: Guest on March-21-2021

Code answers related to "how to write a function that check leap year in python"

Python Answers by Framework

Browse Popular Code Answers by Language