在python中获取给定月份的所有星期的开始和结束日期,不包括其他月份的日期

时间:2018-12-02 18:31:14

标签: python calendar

我需要使用python获取给定月份的所有星期的开始和结束日期。

样品输入2018年12月

可能的输出

01-12-2018

2018年12月2日-2018年8月12日

09-12-2018-15-12-2018

16-12-2018-22-12-2018

23-12-2018-29-12-2018

30-12-2018-31-12-2018

我如下使用了日历模块,

obj_cal= calendar.Calendar(firstweekday=6)
[x for x in cal.monthdatescalendar(2018, 12)]

但这包括从2018年11月到2019年1月的日期

如何排除其他月份的日期。

注意:问题已编辑

2 个答案:

答案 0 :(得分:2)

这是我的解决方法:

import calendar
from datetime import timedelta

# sunday is the first day of the week
# set 0 for monday
firstweekday = 6

def weeks_in_month(year, month):
    c = calendar.Calendar(firstweekday)
    for weekstart in filter(lambda d: d.weekday() == firstweekday, c.itermonthdates(year, month)):
        weekend = weekstart + timedelta(6)
        yield (weekstart, weekend)


for weekstart, weekend in weeks_in_month(2018, 12):
    print(weekstart, '-', weekend)

输出:

2018-11-25 - 2018-12-01
2018-12-02 - 2018-12-08
2018-12-09 - 2018-12-15
2018-12-16 - 2018-12-22
2018-12-23 - 2018-12-29
2018-12-30 - 2019-01-05

答案 1 :(得分:1)

>>> import datetime    
>>> import calendar
>>> cld=calendar.Calendar(firstweekday=0)
>>> for end_day in cld.itermonthdates(2018,12):
...     if end_day.weekday()==5:
...         start_day=end_day-datetime.timedelta(6)
...         print('{} - {}'.format(start_day.isoformat(),end_day.isoformat()))
... 
2018-11-25 - 2018-12-01
2018-12-02 - 2018-12-08
2018-12-09 - 2018-12-15
2018-12-16 - 2018-12-22
2018-12-23 - 2018-12-29
2018-12-30 - 2019-01-05