“Timestamp E DateTime Python” Código de respuesta

Python DateTime to TimeStamp

import datetime
now = datetime.datetime.today()
timestamp = datetime.datetime.timestamp(now)
Angry Angelfish

Timestamp E DateTime Python

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

Respuestas similares a “Timestamp E DateTime Python”

Preguntas similares a “Timestamp E DateTime Python”

Más respuestas relacionadas con “Timestamp E DateTime Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código