「Python」現在の日時を取得するサンプル

書式
変数名 = datetime.datetime.now()
スラッシュ区切りに指定
変数名.strftime('%Y/%m/%d %H:%M:%S’)

使用例

# coding: utf-8
import datetime 

# 現在日時の取得
cftA = datetime.datetime.now()
print(cftA)


# 現在日時の取得 スラッシュ区切りに指定 ミリ秒なし
cftB = cftA.strftime('%Y/%m/%d %H:%M:%S')
print(cftB) 


# 現在日時の取得 スラッシュ区切りに指定 ミリ秒3桁
cftC = cftA.strftime('%Y/%m/%d %H:%M:%S.%f')[:-3]
print(cftC)

実行結果
2022-01-31 21:17:31.413468
2022/01/31 21:17:31
2022/01/31 21:17:31.413

Python

Posted by arkgame