Python program to check given year is a leap or not?
- Rajesh Singh
- Mar 26, 2020
- 1 min read
Updated: Jul 17, 2021
Python program to check if year is a leap year or not year = int(input("Enter Year: "))
if year % 4 == 0 and year % 100 != 0:
print(year, "is a Leap Year")
elif year % 400 ==0:
print(year, "is a Leap Year")
elif year % 100 == 0:
print(year, "is not a Leap Year")
else:
print(year, "is not a Leap Year")
Output:
Enter Year: 64 64 is a Leap Year
Video:
Комментарии