pandas.Timestamp.as_unit #

时间戳。as_unit (单位, round_ok = True ) #

将底层 int64 表示形式转换为给定单位。

参数
单位{“ns”, “us”, “ms”, “s”}
round_ok bool, 默认 True

如果为 False 并且转换需要舍入,则引发。

返回
时间戳

例子

>>> ts = pd.Timestamp('2023-01-01 00:00:00.01')
>>> ts
Timestamp('2023-01-01 00:00:00.010000')
>>> ts.unit
'ms'
>>> ts = ts.as_unit('s')
>>> ts
Timestamp('2023-01-01 00:00:00')
>>> ts.unit
's'