• + 0 comments

    **def is_leap(year): ** """ Checks if a year is a leap year based on standard rules. """ if (year % 400 == 0) or (year % 4 == 0 and year % 100 != 0): return True else: return False

            try this code guys in python 3 language