Created
March 9, 2013 07:41
-
-
Save zhenyi2697/5123340 to your computer and use it in GitHub Desktop.
Python: datetime: find last friday
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/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