2020/10/6 Python

Python 日付操作の記述方法

現在の年月日を取得する

import datetime

datetime.date.today().strftime("%Y/%m/%d")

datetime.strftime

現在の年月日時間を取得する

import datetime

datetime.datetime.now().strftime("%Y/%m/%d %H:%M:%S")

datetime.strftime

年月日のパースを行う

import datetime

print(datetime.datetime.strptime('2021/1/1 1:1:1', '%Y/%m/%d %H:%M:%S'))

datetime.strptime