copipe Python | datetimeのタイムゾーンを設定する。

概要

tzinfo=datetime.timezone(タイムゾーン)を指定することで、datetimeのタイムゾーンを設定することができる。

コード

import datetime
t = datetime.datetime(2021, 4, 5, 15, 26, 30, tzinfo=datetime.timezone(datetime.timedelta(hours=9)))
print(t)

結果

2021-04-05 15:26:30+09:00