Skip to content

Instantly share code, notes, and snippets.

@AnnikaNoren
Created October 27, 2020 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnnikaNoren/31fd7e604afae8a4866f0b0828438c95 to your computer and use it in GitHub Desktop.
Save AnnikaNoren/31fd7e604afae8a4866f0b0828438c95 to your computer and use it in GitHub Desktop.
def has_friday_13(month, year):
spooky = datetime.date(year, month, 13)
return spooky.strftime("%A") == "Friday"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment