当前位置:   article > 正文

Python将时间戳转换为实际时间的方法_python时间戳转换成时间

python时间戳转换成时间

Python将时间戳转换为实际时间的方法

import time
#44777为时间戳
timeStamp = 44777

timeArray = time.localtime(timeStamp)

otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)

print(otherStyleTime)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/73062
推荐阅读
相关标签
  

闽ICP备14008679号