欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python整小时 整天时间戳获取算法示例

程序员文章站 2022-04-08 21:26:02
根据当前时间戳获得整小时时间戳 unit = 3600 start_time = int(time.time())/3600 * 3600 根据当前时间戳...

根据当前时间戳获得整小时时间戳

unit = 3600
start_time = int(time.time())/3600 * 3600

根据当前时间戳获得整天时间戳

unit = 3600*24
start_time = int(time.time()) / unit * unit - 8 * 3600

由于时间戳起始为1970 年 1 月 1 日(08:00:00)所以这里需要减8小时才时0点的时间戳

以上这篇python整小时 整天时间戳获取算法示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。