Skip to content

Instantly share code, notes, and snippets.

@hallazzang
Created August 25, 2016 16:56
Show Gist options
  • Save hallazzang/90b39691e09b492fd6152baae1d696b0 to your computer and use it in GitHub Desktop.
Save hallazzang/90b39691e09b492fd6152baae1d696b0 to your computer and use it in GitHub Desktop.
Python - is_leap_year
from datetime import date
def is_leap_year(year):
try: date(year, 2, 29)
except ValueError: return False
else: return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment