當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pandas.Series.dt.nanosecond用法及代碼示例


用法:

Series.dt.nanosecond

日期時間的納秒。

例子

>>> datetime_series = pd.Series(
...     pd.date_range("2000-01-01", periods=3, freq="ns")
... )
>>> datetime_series
0   2000-01-01 00:00:00.000000000
1   2000-01-01 00:00:00.000000001
2   2000-01-01 00:00:00.000000002
dtype:datetime64[ns]
>>> datetime_series.dt.nanosecond
0       0
1       1
2       2
dtype:int64

相關用法


注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.dt.nanosecond。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。