Skip to content

pd.Timestamp.month_name

pandasTimestamp.month_name(locale=None)

Supported Arguments: None

Example Usage

>>> @bodo.jit
... def f():
...   return pd.Timestamp(year=2021, month=12, day=9).month_name()
>>> f()
'December'