如何将时间戳转换为整数?

问题描述 投票:0回答:2

我有一个以下类型的值:

'pandas._libs.tslibs.timestamps.Timestamp'

但我想把它转换成:

'int'

仅使用

int()
不起作用,并给出以下错误消息:

int() argument must be a string, a bytes-like object or a number, not 'Timestamp'

编辑:要明确的是,我只想将类型更改为积分。不过我希望这个数字保持不变。

python types timestamp integer
2个回答
0
投票

您应该使用类 (

pandas._libs.tslibs.timestamps.Timestamp
) 方法。
pandas._libs.tslibs.timestamps.Timestamp.timestamp()
返回时间戳,但它是
float
而不是
int


0
投票

大家好,我有时间戳数据,我喜欢为每个我可以使用的库添加 60 秒

© www.soinside.com 2019 - 2024. All rights reserved.