Imprimer la date et l'heure en python

Exemples de code

36
0

N

import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))

11
0

N

from datetime import datetime
now = datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))


Output: 2020-06-19 10:34:45
7
0

N


from datetime import datetime

now = datetime.now().time() # time object

print("now =", now)
print("type(now) =", type(now))	
5
0

N

"""Imports the datetime package from the Python library"""
from datetime import datetime

"""Sets the variable now to the current date and time"""
now = datetime.now()

"""The variable current_time contains the string values of the current time"""
current_time = now.strftime("%H:%M:%S")
print("Current Time =", current_time)
4
0

N

from datetime import date

today = date.today()
print("Today's date:", today)
1
0

N

from datetime import datetime
now = datetime.now()
print("date and time now: ", now)

#you can also personalize how the formats, example:
dt = now.strftime("%d/%m/%Y %H:%M:%S")
print("date and time now: ", dt)

#the output will be
#date and time now:  22/12/2020 01:19:32

Dans d'autres langues

Cette page est dans d'autres langues

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................