“Python obtiene el mes actual” Código de respuesta

Obtener el nombre del mes actual 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 obtiene el mes actual

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

Respuestas similares a “Python obtiene el mes actual”

Preguntas similares a “Python obtiene el mes actual”

Más respuestas relacionadas con “Python obtiene el mes actual” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código