C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
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: # Default function to implement conditions to check leap year def CheckLeap(Year): # Checking if the given year is leap year if((Year % 400 == 0) or (Year % 100 != 0) and (Year % 4 == 0)): print("Given Year is a leap Year"); # Else it is not a leap year else: print ("Given Year is not a leap Year") # Taking an input year from user Year = int(input("Enter the number: ")) # Printing result CheckLeap(Year) 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
|