“Python Get CurrentMonth” Ответ

Python получить текущий месяц

Use:

from datetime import datetime
today = datetime.today()
datem = datetime(today.year, today.month, 1)
I assume you want the first of the month.
Santino

Python Get CurrentMonth

from datetime import datetime

print(datetime.now().month)
Gifted Gull

Ответы похожие на “Python Get CurrentMonth”

Вопросы похожие на “Python Get CurrentMonth”

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

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

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