Pythonでdatetimeモジュールのtimedeltaで過去の日付を計算してみます。 今回使用するtimedeltaはdatetimeモジュールに含まれています。datetimeモジュールは、標準ライブラリですので、事前にインストールする必要はありません。 ■Python Google Colaboratory(Google Colab),Python3.7.10 ■datetimeモジュールのtimedeltaで過去の日付を計算するでは、早速、datetimeモジュールのtimedeltaで過去の日付を計算してみます。 ■コードfrom datetime import datetime from datetime import timedelta time_now = datetime.now() past_date = time_now - timedelta(days=365)