“Импорт DateTime” Ответ

Импорт 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

Как установить формат DateTime в Python

import datetime

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

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

DateTime Year Python

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

Ответы похожие на “Импорт DateTime”

Вопросы похожие на “Импорт DateTime”

Больше похожих ответов на “Импорт DateTime” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования