Last active
January 15, 2020 06:38
-
-
Save heiwa4126/88700d72d431048b5b863f7838632695 to your computer and use it in GitHub Desktop.
python3でタイムゾーン付き現在時刻。すぐ忘れるのでメモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import timezone, datetime | |
print(datetime.now(timezone.utc)) | |
# 「today() および utcnow() よりもこの関数を使う方が好ましいです」だそうです。 | |
# [datetime --- 基本的な日付型および時間型 — Python 3.8.1 ドキュメント](https://docs.python.org/ja/3/library/datetime.html) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
実行例