当前位置:脚本大全 > > 正文

python处理时间序列常用方法汇总(python整小时 整天时间戳获取算法示例)

时间:2022-01-27 01:48:13类别:脚本大全

python处理时间序列常用方法汇总

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

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

  • ?
  • 1
  • 2
  • unit = 3600
  • start_time = int(time.time())/3600 * 3600
  • 根据当前时间戳获得整天时间戳

  • ?
  • 1
  • 2
  • unit = 3600*24
  • start_time = int(time.time()) / unit * unit - 8 * 3600
  • 由于时间戳起始为1970 年 1 月 1 日(08:00:00)所以这里需要减8小时才时0点的时间戳

    PS;推荐一款在线时间戳转换工具  https://tool.zzvips.com/t/timestamp/

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

    原文链接:https://blog.csdn.net/wangxin6722513/article/details/78564068

    上一篇下一篇

    猜您喜欢

    热门推荐