“Uzyskaj bieżący miesiąc Python” Kod odpowiedzi

Uzyskaj bieżący miesiąc Python

import calendar
from datetime import date

current_month_name = calendar.month_name[date.today().month]
# the variable will hold something like 'April'

#if you want the abbreviated version:
current_month_name_abbreviated = calendar.month_abbr[date.today().month]
# the variable will hold something like 'Apr' now instead of 'April'
DeepMatter

Python otrzyma bieżący miesiąc

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

Uzyskaj nazwę miesiąca Python

calendar.month_name[2]
Tough Thrush

Odpowiedzi podobne do “Uzyskaj bieżący miesiąc Python”

Pytania podobne do “Uzyskaj bieżący miesiąc Python”

Więcej pokrewnych odpowiedzi na “Uzyskaj bieżący miesiąc Python” w Python

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

Przeglądaj inne języki kodu