“Python Strftime ISO 8601” Kod odpowiedzi

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

Odpowiedzi podobne do “Python Strftime ISO 8601”

Pytania podobne do “Python Strftime ISO 8601”

Więcej pokrewnych odpowiedzi na “Python Strftime ISO 8601” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu