Leap year

year = int(input("Enter the year to be checked"))
leap = year
if (year % 4) == 0:
   if (year % 100) == 0:
       if (year % 400) == 0:
           print(leap, " is a leap year")
       else:
           print(leap," is not a leap year")
   else:
       print(leap,"is a leap year")
else:
   print( leap," is not a leap year")






For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

Instagram link :- https://www.instagram.com/apurba_khanra/
INSTA photography page :- https://www.instagram.com/photo_mania_hub/
Twitter link : - https://twitter.com/ApurbaKhanra199
Facebook page link (Crazy Coders) :-https://www.facebook.com/codercrazy/?modal=admin_todo_tour

Insta photography link :- https://www.instagram.com/photo_mania_hub/

Facebook link :- https://www.facebook.com/profile.php?id=100009747586288
FB photography page :-  https://www.facebook.com/photomaniahub/?modal=admin_todo_tour

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/

Post a Comment

0 Comments