当前位置:   article > 正文

python将时间戳转换为日期格式_python 时间戳转日期

python 时间戳转日期

简单来说,时间戳是当前时间距离 1970-01-01T00:00:00Z 有多少秒。
比如,当前时间为 2022年7月6日10点32分50秒,故这个时间点对应的时间戳为 1657074770

1.时间戳获取

import time
now=time.time()#获取当前时间时间戳
  • 1
  • 2

在这里插入图片描述

2. 毫秒级时间戳转换为日期

时间戳为1678723200000时

import time
now = int(1678723200000/1000)
timeArray = time.localtime(now)
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print(otherStyleTime)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

3.秒级时间戳转换

import time
now = time.time()
timeArray = time.localtime(now)
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print(now)
print(otherStyleTime)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/73063
推荐阅读
相关标签
  

闽ICP备14008679号