cudf.DatetimeIndex.second#

property DatetimeIndex.second#

The seconds of the datetime.

Examples

>>> import pandas as pd
>>> import cudf
>>> datetime_index = cudf.Index(pd.date_range("2000-01-01",
...             periods=3, freq="s"))
>>> datetime_index
DatetimeIndex(['2000-01-01 00:00:00', '2000-01-01 00:00:01',
            '2000-01-01 00:00:02'],
            dtype='datetime64[ns]')
>>> datetime_index.second
Index([0, 1, 2], dtype='int16')