概要
Pythonで「現在の日付と時刻の値を持つインスタンスを作成する」の動作を確認してみました。
以下のページを参考にしました。
実装
以下のファイルを作成しました。
sample.py
import datetime
print(datetime.date.today())
print(datetime.datetime.now())
tokyo_tz = datetime.timezone(datetime.timedelta(hours=9))
print(datetime.datetime.now(tokyo_tz))
ny_tz = datetime.timezone(datetime.timedelta(hours=-4))
print(datetime.datetime.now(ny_tz))
以下のコマンドを実行しました。
$ python3 sample.py
2024-03-30
2024-03-30 10:23:47.981617
2024-03-30 10:23:47.981654+09:00
2024-03-29 21:23:47.981668-04:00
まとめ
何かの役に立てばと。