How do I get the start date and end date of the week, given week number and year in python?
I've tried this:
def get_start_end_dates(year, week):
dlt = timedelta(days = (week - 1) * 7)
d = date(year, 1, 1)
return d + dlt, d + dlt + timedelta(days=6)
But with this function I assume that first week of the year starts with Monday.