“Agregue horas hasta la fecha en Python” Código de respuesta

Agregue horas hasta la fecha en Python


from datetime import datetime, timedelta

nine_hours_from_now = datetime.now() + timedelta(hours=9)
#datetime.datetime(2012, 12, 3, 23, 24, 31, 774118)

Happy Hamster

Agregar hora de minutos segundo pitón

from datetime import timedelta
t1 = datetime.time(hours, minutes, second) + timedelta(seconds=s, minutes=m, hours=h)
Perro Fiel

Agregue horas hasta la fecha en Python

# import datetime module
from datetime import datetime,timedelta

currentTimeDate = date.today() + relativedelta(hours=5)
currentTime = currentTimeDate.strftime('%H:%M:%S')

print(currentTime)

// Run Example -> python example1.py

// Output:

05:00:00
Piyush Kamani

Respuestas similares a “Agregue horas hasta la fecha en Python”

Preguntas similares a “Agregue horas hasta la fecha en Python”

Más respuestas relacionadas con “Agregue horas hasta la fecha en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código