[PYTHON] datetime partie 1

python


import datetime

now = datetime.datetime.now()
print(now)
print(now.isoformat())
print(now.strftime('%d/%m/%Y-%H:%M:%S:%f'))
print('##########')

today = datetime.date.today()
print(today)
print(today.isoformat())
print(today.strftime('%d/%m/%y'))
print('##########')

t = datetime.time(hour=1, minute=15, second=30, microsecond=100)
print(t)
print(t.isoformat())
print(t.strftime('%H:%M:%S:%f'))

Résultat d'exécution


2020-02-26 10:56:54.691417
2020-02-26T10:56:54.691417
26/02/2020-10:56:54:691417
##########
2020-02-26
2020-02-26
26/02/20
##########
01:15:30.000100
01:15:30.000100
01:15:30:000100

Recommended Posts

datetime partie 1
numpy partie 1
argparse partie 1
numpy partie 2
Théorie de la file d'attente, partie 4
neo4j avec bac à sable partie 12
QGIS + Python Partie 2
bac à sable avec neo4j partie 5
Comment utiliser le module datetime
Django a commencé la partie 1
Report_Apprentissage approfondi (partie 2)
Report_Apprentissage approfondi (partie 1)
Report_Apprentissage approfondi (partie 1)
QGIS + Python Partie 1
Installation GMT partie 2.
Installation GMT partie 1.
Django a commencé la partie 4
Report_Apprentissage approfondi (partie 2)
neo4j avec bac à sable partie 13
neo4j avec bac à sable partie 15
Théorie de la file d'attente partie 3
Python: grattage partie 1
neo4j avec bac à sable partie 16
bac à sable avec neo4j partie 11
Python3 commence la partie 1
Python: grattage, partie 2
série pandas partie 1