pandas / 1.4.0 / reference / api / pandas.timestamp.is_quarter_end.html /

pandas.Timestamp.is_quarter_end

Timestamp. is_quarter_end

Return True if date is last day of the quarter.

Examples

>>> ts = pd.Timestamp(2020, 3, 14)
>>> ts.is_quarter_end
False
>>> ts = pd.Timestamp(2020, 3, 31)
>>> ts.is_quarter_end
True

© 2008–2022, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/1.4.0/reference/api/pandas.Timestamp.is_quarter_end.html