“Importar DateTime” Código de respuesta

Importar DateTime

from datetime import datetime

date = datetime.now()
print(date)
# Prints in the format year, month, day, hour, minute, second, and microsecond
Locstock

Python de fecha y hora

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

Python Strftime ISO 8601

>>> # convert string in iso 8601 date dime format to python datetime type
>>> import datetime
>>> datetime.datetime.strptime('2020-06-19T15:52:50Z', "%Y-%m-%dT%H:%M:%SZ")
datetime.datetime(2020, 6, 19, 15, 52, 50)
Cheerful Constrictor

Cómo establecer el formato de fecha y hora en Python

import datetime

x = datetime.datetime(2018, 9, 15)

print(x.strftime("%b %d %Y %H:%M:%S"))
Xenophobic Xenomorph

Python del año de fecha y hora

import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
miletoo

Respuestas similares a “Importar DateTime”

Preguntas similares a “Importar DateTime”

Más respuestas relacionadas con “Importar DateTime” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código