pandas.Period.start_time — pandas 1.0.1 documentation (original) (raw)
Get the Timestamp for the start of the period.
Returns
Timestamp
See also
Return the end Timestamp.
Return the day of year.
Return the days in that month.
Return the day of the week.
Examples
period = pd.Period('2012-1-1', freq='D') period Period('2012-01-01', 'D')
period.start_time Timestamp('2012-01-01 00:00:00')
period.end_time Timestamp('2012-01-01 23:59:59.999999999')