“Python strftime ISO 8601” Respostas de código

Python DateTime to String ISO 8601

from datetime import datetime
my_date = datetime.now()
print(my_date.strftime('%Y-%m-%dT%H:%M:%S.%f%z'))
Danny Mor

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

Python DateTime to String ISO 8601

from datetime import datetime
my_date = datetime.now()
print(my_date.isoformat())
Danny Mor

Respostas semelhantes a “Python strftime ISO 8601”

Perguntas semelhantes a “Python strftime ISO 8601”

Mais respostas relacionadas para “Python strftime ISO 8601” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código