“Obtenha o nome do mês atual Python” Respostas de código

Obtenha o nome do mês atual 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 Obtenha o mês atual

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

Obtenha o nome do mês python

calendar.month_name[2]
Tough Thrush

Respostas semelhantes a “Obtenha o nome do mês atual Python”

Perguntas semelhantes a “Obtenha o nome do mês atual Python”

Mais respostas relacionadas para “Obtenha o nome do mês atual Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código