pandas.Timestamp.month_name#

Timestamp.month_name(locale=None)#

返回具有指定区域设置的 Timestamp 的月份名称。

此方法返回与 Timestamp 对应的月份全名,例如 ‘January’, ‘February’ 等。如果提供了指定的区域设置,则月份名称可以以该区域设置返回;否则,它默认为英语区域设置。

参数:
localestr, 默认 None (英文区域设置)

确定返回月份名称的语言的区域设置。

返回:
str

完整的月份名称作为字符串。

参见

Timestamp.day_name

返回一周中某一天的名称。

Timestamp.strftime

返回 Timestamp 的格式化字符串。

datetime.datetime.strftime

返回一个表示日期和时间的字符串。

例子

获取英文的月份名称(默认):

>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651')
>>> ts.month_name()
'March'

类似于 pd.NaT

>>> pd.NaT.month_name()
nan