“День Python от DateTime” Ответ

День Python от DateTime

import datetime
date = '2021-05-21 11:22:03'
datem = datetime.datetime.strptime(date, "%Y-%m-%d %H:%M:%S")
print(datem.day)        # 25
print(datem.month)      # 5
print(datem.year)       # 2021
print(datem.hour)       # 11
print(datem.minute)     # 22
print(datem.second)     # 3
VasteMonde

Python Date Get Day

import datetime
dt = datetime.datetime.today()
year = dt.year
month = dt.month
day = dt.day
Arno Deceuninck

Время от времени в день года Python

>>> import datetime
>>> today = datetime.datetime.now()
>>> print today
2009-03-06 15:37:02.484000
>>> today.strftime('%j')
'065'
Tremendous Enceladus

Ответы похожие на “День Python от DateTime”

Вопросы похожие на “День Python от DateTime”

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

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

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