Print a month's calendar.
(self, theyear, themonth, w=0, l=0)
| 383 | return s.center(width) |
| 384 | |
| 385 | def prmonth(self, theyear, themonth, w=0, l=0): |
| 386 | """ |
| 387 | Print a month's calendar. |
| 388 | """ |
| 389 | print(self.formatmonth(theyear, themonth, w, l), end='') |
| 390 | |
| 391 | def formatmonth(self, theyear, themonth, w=0, l=0): |
| 392 | """ |