Created
March 9, 2013 07:41
-
-
Save zhenyi2697/5123340 to your computer and use it in GitHub Desktop.
Revisions
-
zhenyi2697 revised this gist
Mar 29, 2013 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,10 @@ #/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") -
zhenyi2697 created this gist
Mar 9, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ #/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")