datetime
--Sortir la date actuelle
Date d'éxecution
# yyyymmdd
yyyymmdd = datetime.date.today().strftime('%Y%m%d')
print(yyyymmdd)
# yyyy/mm/dd
yyyymmdd = datetime.date.today().strftime('%Y/%m/%d')
print(yyyymmdd)
# yyyy-mm-dd
yyyymmdd = datetime.date.today().strftime('%Y-%m-%d')
print(yyyymmdd)
résultat
20200917
2020/09/17
2020-09-17
--Ajouter du temps à la date et à l'heure d'exécution et à la sortie
aaaammjjhhmmss
Date d'éxecution
yyyymmdd_hms = datetime.date.now().strftime('%Y%m%d%H%M%S')
print(yyyymmdd_hms)
résultat
20200917155026
Utilisez strftime ()
Cliquez ici pour le code de format [Code de format pour strftime () et strptime ()]
(https://docs.python.org/ja/3/library/datetime.html#strftime-and-strptime-format-codes)
Recommended Posts