top of page

Making a Program to Check Leap Year in Python


Program to Check Leap Year

#Program by eboostup.com
#Making a Program to Check Leap Year in Python
year=int(input("Enter Year: "))
if (year%4==0):
    print(year,"is a Leap Year")
else:
    print(year,"isn't a Leap Year")
print("Powered By eboostup")


#eboostup #eboostupindia #ankushdhingra



bottom of page