5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Python] 日本の現在時刻を取得する

Posted at

pytzとdatetimeを使用して、日本の現在時刻を取得します。
#pytzのインストール
まず、pytzライブラリをインストールします。

pip install putz

#日本の現在時刻を取得する

from datetime import datetime
from pytz import timezone

now = datetime.now(timezone('Asia/Tokyo'))
print(now)

上記のコードを実行すると、以下のように日本の現在時刻が取得できます!
2019-06-01 14:30:30.736103+09:00

#任意の時刻情報を文字列で取得したい時
strftime()メソッドを使うことで、下記のように、任意の時刻情報を文字列で取得することができます。

from datetime import datetime
from pytz import timezone

now = datetime.now(timezone('Asia/Tokyo')).strftime("%m%d %H:%M")
print(now)

上記では現在の月、日、時間、分を取得しています。以下のように取得できます!
0606 21:32

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?