DatetimeIndex.
day_name
Return the day names of the series with specified locale.
Locale determining the language in which to return the day name. Default is English locale.
Index of day names.
Examples
>>> idx = ps.date_range(start='2018-01-01', freq='D', periods=3) >>> idx.day_name() Index(['Monday', 'Tuesday', 'Wednesday'], dtype='object')