Python

Python うるう年(閏年)の判定をしてみる

calendarライブラリにある、isleap関数で判定できます。

import calendar
from datetime import datetime

y = datetime.now().year
print(calendar.isleap(y)) #今年が閏年の場合はTrue

併せて以下の記事もおすすめです。

Python 月の最終日を取得|タカの技術ブログ (hawk-tech-blog.com)