import datetime
print datetime.datetime.now().strftime("Week of %m/%d")
#returns "Week of 04/18"
I want it to print "Week of 4/11 to 4/18" (with 4/13 being exactly one week beforehand) and it would need to account for if the week ended on 4/3, then it would be "Week of 3/27 to 4/3"
Is there an easy way to do this?