DatetimeIndex.
month_name
Return the month names of the DatetimeIndex with specified locale.
Locale determining the language in which to return the month name. Default is English locale.
Index of month names.
Examples
>>> idx = ps.date_range(start='2018-01', freq='M', periods=3) >>> idx.month_name() Index(['January', 'February', 'March'], dtype='object')