「Python3」calendar.month()で月のカレンダーを文字列で取得するサンプル

2020年12月6日

説明
calendar.month()で任意の年・月のカレンダーを文字列
で取得します。
使用例

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
import calendar
 
cal = calendar.month(2020, 12)
print ("2020年12月のカレンダー:")
print (cal)

実行結果
2020年12月のカレンダー:
December 2020
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

Python

Posted by arkgame