Wednesday 29 June 2016

Python: Calendar: itermonthdays2(year, month)

itermonthdays2(year, month)
Returns an iterator for given month in given year. Days returned will be tuples consisting of a day number and a week day number.
>>> from calendar import Calendar
>>> cal1=Calendar()
>>> iter=cal1.itermonthdays2(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