0
Locale Calendar
I want to create a local calendar but both in Python IDLE 3.6 and code playground didn't work. I taken the example here: https://pymotw.com/3/calendar/ . # calendar_locale.py import calendar c = calendar.LocaleTextCalendar(locale='en_US') c.prmonth(2017, 7) print() c = calendar.LocaleTextCalendar(locale='it_IT') c.prmonth(2017, 7)
1 Answer