Instagram
youtube
Facebook
Twitter

Check Leap Year

A Python program to determine whether a given year is a leap year based on divisibility rules.

Explanation:

  1. Divisible by 4: A year is a leap year if it is divisible by 4.
     
  2. Not Divisible by 100: If a year is divisible by 100, it must also be divisible by 400 to be a leap year.
     
  3. Output: If conditions match, it prints "Leap Year," otherwise, "Not a Leap Year

 

Program:

year = int(input("Enter a year: "))

if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):

    print(year, "is a Leap Year")

else:

    print(year, "is not a Leap Year")