Thursday 14 July 2016

Python: Calendar: Get formatted month calendar

calendar.month(theyear, themonth, w=0, l=0)

Returns the months calendar. ‘w’ specifies the width of the date columns and ‘l’ specifies the number of lines that each week will use. It internally uses formatmonth() of the TextCalendar class.
>>> import calendar
>>> print(calendar.month(2015,11,2,1))
   November 2015
Mo Tu We Th Fr Sa Su
                   1
 2  3  4  5  6  7  8
 9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30


Previous                                                 Next                                                 Home

No comments:

Post a Comment