Skip to content

Instantly share code, notes, and snippets.

@zhenyi2697
Created March 9, 2013 07:41
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhenyi2697/5123340 to your computer and use it in GitHub Desktop.
Save zhenyi2697/5123340 to your computer and use it in GitHub Desktop.
Python: datetime: find last friday
#/usr/bin/python
import datetime, calendar
lastFriday = datetime.date.today()
oneday = datetime.timedelta(days=1)
while lastFriday.weekday() != calendar.FRIDAY:
lastFriday -= oneday
print lastFriday.strftime("%D")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment