top of page
Writer's pictureRajesh Singh

Python program to check given year is a leap or not?

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:





81 views0 comments

Recent Posts

See All

Comments


bottom of page