- API reference
- pandas arrays, scalars, and data types
- pandas.Perio...
pandas.Period.end_time#
- Period.end_time#
Get the Timestamp for the end of the period.
- Returns:
- Timestamp
See also
Period.start_time
Return the start Timestamp.
Period.dayofyear
Return the day of year.
Period.daysinmonth
Return the days in that month.
Period.dayofweek
Return the day of the week.
Examples
For Period:
>>>pd.Period('2020-01','D').end_timeTimestamp('2020-01-01 23:59:59.999999999')
For Series:
>>>period_index=pd.period_range('2020-1-1 00:00','2020-3-1 00:00',freq='M')>>>s=pd.Series(period_index)>>>s0 2020-011 2020-022 2020-03dtype: period[M]>>>s.dt.end_time0 2020-01-31 23:59:59.9999999991 2020-02-29 23:59:59.9999999992 2020-03-31 23:59:59.999999999dtype: datetime64[ns]
For PeriodIndex:
>>>idx=pd.PeriodIndex(["2023-01","2023-02","2023-03"],freq="M")>>>idx.end_timeDatetimeIndex(['2023-01-31 23:59:59.999999999', '2023-02-28 23:59:59.999999999', '2023-03-31 23:59:59.999999999'], dtype='datetime64[ns]', freq=None)
On this page