LoginSignup
1
3

More than 3 years have passed since last update.

二度と迷わない. python3の日本時間現在時刻をワンライナーで取得

Last updated at Posted at 2019-09-30

毎回調べているのでもう二度と迷いたくない。

from datetime import datetime, timezone, timedelta
date = datetime.now(timezone(timedelta(hours=+9), 'JST')).strftime("%Y%m%d%H%M")

> '201909301427'

以上

1
3
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
1
3