year = int(input(“Enter a year: “))

if (year % 4) == 0:

if (year % 100) == 0:

if (year % 400) == 0:

print(year,”is a leap year”)

else:

print(year,”is not a leap year”)

else:

print(year,”is a leap year”)

else:

print(year,”is not a leap year”)

from datetime import date

y = int(input(“enter a year”))

if y % 4 == 0:

if y % 100 == 0:

if y % 400 == 0:

print(“leap year”)

else:

print(“not a leap year”)

else:

print(“leap year”)

else:

print(“not a leap year”)

year=int(input(“Enter year to be checked:”))

if(year%4==0 and year%100!=0 or year%400==0):

print(“The year is a leap year!”)

else:

print(“The year isn’t a leap year!”)

def is_leap(year):

leap = False

Tomy

Tomy is a contributor at AskMeCode. We are committed to providing well-researched, accurate, and valuable content to our readers.

You May Also Like

honeycode| A way to keep your software fresh with the latest technology. We all know is hard to keep up with all the latest frameworks and libraries and how quickly everything changes.

honeycode| A way to keep your software fresh with the latest technology. We all know is hard to keep up with all the latest frameworks and libraries and how quickly everything changes.

What is honeycode ? A way to keep your software fresh with the latest technology. We all know is hard...

Artistic representation for The Green Code Revolution: Full-Stack Development as an Eco-Friendly Tool for Sustainable Living

The Green Code Revolution: Full-Stack Development as an Eco-Friendly Tool for Sustainable Living

The Green Code Revolution: Full-Stack Development as an Eco-Friendly Tool for Sustainable Living In an era where technology intersects deeply...

How to Write Code That Communicates Information Quickly and Accurately

How to Write Code That Communicates Information Quickly and Accurately

Writing is one of the most powerful ways to communicate information. But, despite its power and ubiquity, writing is not...

Artistic representation for Best Web Development Tips and Strategies

Best Web Development Tips and Strategies

The Green Web: Sustainable Practices in Modern Web Development In an era where environmental consciousness shapes every aspect of our...

Leave a Reply

About | Contact | Privacy Policy | Terms of Service | Disclaimer | Cookie Policy
© 2026 AskMeCode. All rights reserved.