“Importar DateTime” Respostas de código

Importar DateTime

from datetime import datetime

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

DateTime Python

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

Como definir o formato DateTime em Python

import datetime

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

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

DateTime Ano Python

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

Respostas semelhantes a “Importar DateTime”

Perguntas semelhantes a “Importar DateTime”

Mais respostas relacionadas para “Importar DateTime” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código