MyCalendar.py Code:
from django import template
imort calendar
import datetime
date = datetime.date.today()
week = ???
...
The question is that I want to get the week which contains today's date. How can I do?
Thanks for help!
Ver: Django-1.0 Python-2.6.4