woom.util.WoomDate.is_month_end#
- WoomDate.is_month_end#
Check if the date is the last day of the month.
- Returns:
True if the date is the last day of the month.
- Return type:
See also
Timestamp.is_month_startSimilar property indicating month start.
Examples
>>> ts = pd.Timestamp(2020, 3, 14) >>> ts.is_month_end False
>>> ts = pd.Timestamp(2020, 12, 31) >>> ts.is_month_end True