Python Program to Check Leap YearLeap Year: A year is called a leap year if it contains an additional day which makes the number of the days in that year is 366. This additional day is added in February which makes it 29 days long. A leap year occurred once every 4 years. How to determine if a year is a leap year? You should follow the following steps to determine whether a year is a leap year or not.
Look at the following program to understand the implementation of it: Example: Output: Enter the number: 1700 Given year is not a leap Year Explanation: We have implemented all the three mandatory conditions (that we listed above) in the program by using the 'and' and 'or' keyword inside the if else condition. After getting input from the user, the program first will go to the input part and check if the given year is a leap year. If the condition satisfies, the program will print 'Leap Year'; else program will print 'Not a leap year.' Next TopicPython Prime Number |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India