pandas name of day

Solutions on MaxInterview for pandas name of day by the best coders in the world

showing results for - "pandas name of day"
Lucy
08 Apr 2018
1idx = pd.date_range(start='2018-01-01', freq='D', periods=3)
2idx.day_name()
3
4>> Index(['Monday', 'Tuesday', 'Wednesday'], dtype='object')
5