“Python convertit la date en horodatage” Réponses codées

horodatage à ce jour python

from datetime import datetime

timestamp = 1586507536367
dt_object = datetime.fromtimestamp(timestamp)
Beautiful Bear

Python convertit l'horodatage à DateTime

from datetime import datetime

timestamp = 1545730073
dt_object = datetime.fromtimestamp(timestamp)

print("dt_object =", dt_object)
print("type(dt_object) =", type(dt_object))
Nice Narwhal

Comment convertir la date de chaîne en horodatage dans Python

import time
import datetime

# date in string format
dt="23/04/2022"

# convert into the time tuple
time_tuple=datetime.datetime.strptime(dt, "%d/%m/%Y").timetuple()
print("Time tuple format ",time_tuple)

# using mktime() convert to timestamp
print("The timestamp is ",time.mktime(time_tuple))
Gorgeous Gazelle

Python Date de l'horodatage

>>> import time
>>> import datetime
>>> s = "01/12/2011"
>>> time.mktime(datetime.datetime.strptime(s, "%d/%m/%Y").timetuple())
1322697600.0
Vivacious Vendace

Python convertit la date en horodatage

import time
import datetime
s = "01/12/2011"
time.mktime(datetime.datetime.strptime(s, "%d/%m/%Y").timetuple())
Cautious Crab

Python Date de l'horodatage

import datetime
import pytz
# naive datetime
d = datetime.datetime.strptime('01/12/2011', '%d/%m/%Y')
>>> datetime.datetime(2011, 12, 1, 0, 0)

# add proper timezone
pst = pytz.timezone('America/Los_Angeles')
d = pst.localize(d)
>>> datetime.datetime(2011, 12, 1, 0, 0,
tzinfo=<DstTzInfo 'America/Los_Angeles' PST-1 day, 16:00:00 STD>)

# convert to UTC timezone
utc = pytz.UTC
d = d.astimezone(utc)
>>> datetime.datetime(2011, 12, 1, 8, 0, tzinfo=<UTC>)

# epoch is the beginning of time in the UTC timestamp world
epoch = datetime.datetime(1970,1,1,0,0,0,tzinfo=pytz.UTC)
>>> datetime.datetime(1970, 1, 1, 0, 0, tzinfo=<UTC>)

# get the total second difference
ts = (d - epoch).total_seconds()
>>> 1322726400.0
Vivacious Vendace

Réponses similaires à “Python convertit la date en horodatage”

Questions similaires à “Python convertit la date en horodatage”

Plus de réponses similaires à “Python convertit la date en horodatage” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code