目的 パッチチューズデー Pythonプログラム 実行結果 結論 目的 パッチチューズデーを求めるPythonのプログラムを以前作成しました。 もう12月なので、そのプログラムで来年2024年のパッチチューズデーを求めてみます。tarenagashi.hatenablog.jp パッチチューズデー Pythonプログラム import datetime, calendar, pytz def get_day_of_nth_dow(year, month, nth=2, dow=1): first_dow, n = calendar.monthrange(year, month) day = 7…