Wednesday, December 18, 2019

Python program to check if year is a leap year or not

# Python program to check if year is a leap year or not
#to check the year
#year = 2020

#To get year (integer input) from the user
year = int(input("Enter a year: "))

if (year % 4) == 0:
   if (year % 100) == 0:
       if (year % 400) == 0:
           print("{0} is a leap year".format(year))
       else:
           print("{0} is not a leap year".format(year))
   else:
       print("{0} is a leap year".format(year))
else:
   print("{0} is not a leap year".format(year))



Output:

Enter a year: 2020
2020
2020 is a leap year

No comments:

Post a Comment

Featured posts

Happy Independence Day August 15th

Happy Independence Day August 15th  Here's a message for India's Independence Day (August 15th): "शुभ स्वतंत्रता दिवस! आजादी की...

Popular posts