7 lines
267 B
Python
7 lines
267 B
Python
# Question: Write a Python program to check whether a given year is a leap year or not.
|
|
|
|
year = int(input("Enter a year: "))
|
|
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
|
|
print(f"{year} is a leap year")
|
|
else:
|
|
print(f"{year} is not a leap year") |