pandas.Timestamp.timestamp#
- Timestamp.timestamp()#
返回 POSIX 时间戳作为浮点数。
此方法将 Timestamp 对象转换为 POSIX 时间戳,即自 Unix 纪元(1970 年 1 月 1 日)以来的秒数。返回值是一个浮点数,其中整数部分表示秒数,小数部分表示微秒。
- 返回:
- float
Timestamp 对象的 POSIX 时间戳表示。
参见
Timestamp.fromtimestamp
从 POSIX 时间戳构造一个 Timestamp。
datetime.datetime.timestamp
来自 datetime 模块的等效方法。
Timestamp.to_pydatetime
将 Timestamp 转换为 datetime 对象。
Timestamp.to_datetime64
将 Timestamp 转换为 numpy.datetime64。
例子
>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548') >>> ts.timestamp() 1584199972.192548