- API reference
- pandas arrays, scalars, and data types
- pandas.Timestamp.dst
pandas.Timestamp.dst#
- Timestamp.dst()#
Return the daylight saving time (DST) adjustment.
Examples
>>>ts=pd.Timestamp('2000-06-01 00:00:00',tz='Europe/Brussels')>>>tsTimestamp('2000-06-01 00:00:00+0200', tz='Europe/Brussels')>>>ts.dst()datetime.timedelta(seconds=3600)
On this page