Write a program that prompts the user to input a year and determine whether the year is a leap year or not.
Leap Years are any year that can be evenly divided by 4. A year that is evenly divisible by 100 is a leap year only if it is also evenly divisible by 400. Example :
- 1992 Leap Year
- 2000 Leap Year
- 1900 NOT a Leap Year
- 1995 NOT a Leap Year
#program to determine leap year
yr= int(input("Enter year to determine the is it leap or not"))
if (yr%4 == 0 ) or (yr%100 != 0 and yr%400 == 0) :
print("The year is a leap year!")
else:
print("The year isn't a leap year!")