Pythonでカレンダーを表示する

Pythonではcalendarというモジュールを使うと簡単にカレンダーを表示できます。

使い方

>>> import calendar
>>> text = calendar.TextCalendar()
>>> text.formatmonth(2015,1)
    January 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 31

日曜日を週の先頭に移動する場合はsetfirstweekdayを使います。

>>> text.setfirstweekday(calendar.SUNDAY)
>>> text.formatmonth(2015,1)
    January 2015
Su Mo Tu We Th Fr Sa
             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 31

年間のカレンダー表示はformatyearです。

>>> text.formatyear(2015)

テキストの代わりにHTMLで出力したい場合はHTMLCalendarが使えます。

>>> html = calendar.HTMLCalendar()
>>> html.formatmonth(2015,1)

リンク

8.2. calendar — General calendar-related functions — Python 3.4.3 documentation
https://docs.python.org/3/library/calendar.html

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です