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

与えられた年/月を示す数字からカレンダーを表示する。

ソースコード:

# -*- coding: utf-8 -*-

# moduleのインポート
import calendar

int_year  = int(input("Enter 年: "))
int_month = int(input("Enter 月: "))

# カレンダーの表示
print(calendar.month(int_year, int_month))


実行結果:

$
$./example.py
$
Enter 年: 2023
Enter 月: 4 
     April 2023
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

$

備考:

Ubuntu 20.04.2 LTS
Python 3.8.10