Thursday, August 29, 2024

Python Program to Check Leap Year

 Python Program to Check Leap Year;:

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




if (year % 400 == 0) and (year % 100 == 0):

    print( year, "is a leap year")

elif (year % 4 ==0) and (year % 100 != 0):

     print( year, "is a leap year")

else:

   print( year, "is not  a leap year")

No comments:

Post a Comment