modin.pandas.DatetimeIndex.timetz

property DatetimeIndex.timetz: NoReturn[source]

Returns the time part of the Timestamps with timezone.

Return type:

An Index with the time part with timezone of the Timestamps.

Examples

>>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00",
...                         "2/1/2020 11:00:00+00:00"])
>>> idx.timetz  
Index(["10:00:00+00:00", "11:00:00+00:00"], dtype='object')
Copy