Friday 1 July 2016

Python: Calendar: monthdays2calendar(year, month)

monthdays2calendar(year, month)
Returns list of weeks in given month in given year. Weeks are lists of seven tuples of day numbers and weekday numbers.
>>> from calendar import Calendar
>>> iter=cal1.monthdays2calendar(2015, 11)
>>> for day in iter:
...     print(day)
... 
[(0, 0), (0, 1), (0, 2), (0, 3), (0, 4), (0, 5), (1, 6)]
[(2, 0), (3, 1), (4, 2), (5, 3), (6, 4), (7, 5), (8, 6)]
[(9, 0), (10, 1), (11, 2), (12, 3), (13, 4), (14, 5), (15, 6)]
[(16, 0), (17, 1), (18, 2), (19, 3), (20, 4), (21, 5), (22, 6)]
[(23, 0), (24, 1), (25, 2), (26, 3), (27, 4), (28, 5), (29, 6)]
[(30, 0), (0, 1), (0, 2), (0, 3), (0, 4), (0, 5), (0, 6)]


Previous                                                 Next                                                 Home

No comments:

Post a Comment