An extra day is added to the calendar almost every four years as February 29, and the day is called a leap day. It corrects the calendar for the fact that our planet takes approximately 365.25 days to orbit the sun. A leap year contains a leap day.
In the Gregorian calendar, three conditions are used to identify leap years:
- The year can be evenly divided by 4, is a leap year, unless:
- The year can be evenly divided by 100, it is NOT a leap year, unless:
- The year is also evenly divisible by 400. Then it is a leap year.
- The year can be evenly divided by 100, it is NOT a leap year, unless:
This means that in the Gregorian calendar, the years 2000 and 2400 are leap years, while 1800, 1900, 2100, 2200, 2300 and 2500 are NOT leap years. Source
Task
Given a year, determine whether it is a leap year. If it is a leap year, return the Boolean True, otherwise return False.
Note that the code stub provided reads from STDIN and passes arguments to the is_leap function. It is only necessary to complete the is_leap function.
Input Format
Read , the year to test.
Constraints
1900 <= year <= 10^5
Output Format
The function must return a Boolean value (True/False). Output is handled by the provided code stub.
Sample Input 0
1990
Sample Output 0
False
Explanation 0
1990 is not a multiple of 4 hence it’s not a leap year.
Solution
def is_leap(year):
leap = False
if year % 400 == 0:
leap = True
elif year % 100 == 0:
leap = False
elif year % 4 == 0:
leap = True
return leap
# year = int(input())
# print(is_leap(year))Happy Learning – If you require any further information, feel free to contact me.
![[Solved] Write a function HackerRank Problem [Solved] Write a function HackerRank Problem](https://realcoder.techss24.com/wp-content/uploads/2022/09/Solved-Write-a-function-HackerRank-Problem.png)
![[Solved] Event Details write using Python](https://realcoder.techss24.com/wp-content/uploads/2022/06/Solved-Event-Details-write-using-Python-300x200.png)
![[Solved] Asya has been traveling different worlds after building a portal for herself](https://realcoder.techss24.com/wp-content/uploads/2023/02/Solved-Asya-has-been-traveling-different-worlds-after-building-a-portal-for-herself-300x169.png)
![[Solved] Mr. Vincent works in a door mat manufacturing company](https://realcoder.techss24.com/wp-content/uploads/2022/12/Solved-Mr.-Vincent-works-in-a-door-mat-manufacturing-company-300x200.png)