Computer Science

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

Python

Python Data Handling

43 Likes

Answer

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

Answered By

24 Likes


Related Questions