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

Ethiopian culture calendar language

Ethiopian culture, calendar, language  The Ethiopian language, specifically Amharic, uses a script called Ge'ez script. It consists of 3...

Popular posts