pandas / 1 / reference / api / pandas.timestamp.is_year_end.html

pandas.Timestamp.is_year_end

Timestamp.is_year_end

Return True if date is last day of the year.

Examples

>>> ts = pd.Timestamp(2020, 3, 14)
>>> ts.is_year_end
False
>>> ts = pd.Timestamp(2020, 12, 31)
>>> ts.is_year_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.5.0/reference/api/pandas.Timestamp.is_year_end.html