- API reference
- pandas arrays, scalars, and data types
- pandas.Times...
pandas.Timestamp.is_month_end#
- Timestamp.is_month_end#
Check if the date is the last day of the month.
- Returns:
- bool
True if the date is the last day of the month.
See also
Timestamp.is_month_startSimilar property indicating month start.
Examples
>>>ts=pd.Timestamp(2020,3,14)>>>ts.is_month_endFalse
>>>ts=pd.Timestamp(2020,12,31)>>>ts.is_month_endTrue
On this page