CBSE Class 11 Computer Science Question 153 of 173

Data Handling — Question 5

Back to all questions
5
Question

Question 5

Write a program to take year as input and check if it is a leap year or not.

Solution
y = int(input("Enter year to check: "))
print(y % 4 and "Not a Leap Year" or "Leap Year")
Output
Enter year to check: 2020
Leap Year
Answer