pandas.Timestamp.tz#

property Timestamp.tz#

Alias for tzinfo.

The tz property provides a simple and direct way to retrieve the timezone information of a Timestamp object. It is particularly useful when working with time series data that includes timezone information, allowing for easy access and manipulation of the timezone context.

See also

Timestamp.tzinfo

Returns the timezone information of the Timestamp.

Timestamp.tz_convert

Convert timezone-aware Timestamp to another time zone.

Timestamp.tz_localize

Localize the Timestamp to a timezone.

Examples

>>> ts = pd.Timestamp(1584226800, unit='s', tz='Europe/Stockholm')
>>> ts.tz
<DstTzInfo 'Europe/Stockholm' CET+1:00:00 STD>