Python Program to Check whether Year is a Leap Year or not


Python Program to Check whether Year is a Leap Year or not


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

 # Leap Year Check
 if year % 4 == 0 and year % 100 != 0:
     print(year, "is a Leap Year")
 elif year % 100 == 0:
     print(year, "is not a Leap Year")
 elif year % 400 ==0:
     print(year, "is a Leap Year")
 else:
     print(year, "is not a Leap Year")


Output:

 Enter Year: 2021
 2021 is not a Leap Year

 Enter Year: 2020
 2020 is a Leap Year