“Obtenez le nom du mois en cours Python” Réponses codées

Obtenez le nom du mois en cours 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 obtient le mois en cours

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

Obtenez le nom du mois Python

calendar.month_name[2]
Tough Thrush

Réponses similaires à “Obtenez le nom du mois en cours Python”

Questions similaires à “Obtenez le nom du mois en cours Python”

Plus de réponses similaires à “Obtenez le nom du mois en cours Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code