Answers for "how to get whether the current year is leap year or not ?"

C++
-1

leap year

import calendar

def is_leap(year):
    return calendar.isleap(year)
Posted by: Guest on May-06-2021

Code answers related to "how to get whether the current year is leap year or not ?"

Browse Popular Code Answers by Language