pandas.Timestamp.is_year_end#
- Timestamp.is_year_end#
如果日期是该年的最后一天,则返回 True。
- 返回:
- bool
参见
Timestamp.is_year_start
类似的属性,表示年份的开始。
例子
>>> ts = pd.Timestamp(2020, 3, 14) >>> ts.is_year_end False
>>> ts = pd.Timestamp(2020, 12, 31) >>> ts.is_year_end True