“Python Compare Timestamps” Código de respuesta

Python Compare Timestamps

# importe datetime
from datetime import datetime

# create two datetime
before = datetime(2010, 12, 27, 14, 39, 19, 700401)
after = datetime.now()

# test
if(before>after):
  ...
if(before<after):
  ...
Tough Trout

Compare Times Python

#Check if now is before or after 8am:
now = datetime.datetime.now()
today8am = now.replace(hour=8, minute=0, second=0, microsecond=0)
#Perform the checks:
if (now < today8am):
  ...
if (now == today8am):
  ...
MitchAloha

Respuestas similares a “Python Compare Timestamps”

Preguntas similares a “Python Compare Timestamps”

Más respuestas relacionadas con “Python Compare Timestamps” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código