A leap year is a year, occurring once every four years, which has 366 days, including 29 February as an intercalary day. A leap year is exactly divisible by 4 except for century years (years ending with 00). The century year is a leap year only if it is perfectly divisible by 400. In this article, we will create a Python program to check leap year.

Problem Definition

Create a Python program to check if the year is a leap year or not.

 

Method 1
Output of method 1

In the above program, first, we are taking input from the user and then converting it to an integer using the int() method. Then we perform mathematical operations against the logic that a leap year is exactly divisible by 4, except for century years; the century year is a leap year only if it is perfectly divisible by 400.

 

Method 2

Python ships with a module called calendar that has a isleap() method that returns a boolean True if the year is a leap year.

Output of method 1

First, we are importing the isleap() method from the calendar module. Later, we pass the year as an argument to the method, along with conditional statements to print out the result.

Leave a Comment