Thursday 14 July 2016

Python: LocaleTextCalendar: Get locale specific month and year

calendar.LocaleTextCalendar(firstweekday=0, locale=None)

LocaleTextCalendar is a sub class of TextCalendar used to get the month and date names in specified locale.
>>> import calendar
>>> cal1=calendar.LocaleTextCalendar(calendar.MONDAY, 'de_DE')
>>> 
>>> print(cal1.formatmonth(2011, 11))
   November 2011
Mo Di Mi Do Fr Sa So
    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