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

pandas.Timestamp.is_quarter_start

Timestamp. is_quarter_start

Return True if date is first day of the quarter.

Examples

>>> ts = pd.Timestamp(2020, 3, 14)
>>> ts.is_quarter_start
False
>>> ts = pd.Timestamp(2020, 4, 1)
>>> ts.is_quarter_start
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_start.html