python将秒数转化为时间格式的实例

时间:2022-09-04 14:51:15

1、转化时间格式

?
1
2
3
4
seconds =35400
m, s = divmod(seconds, 60)
h, m = divmod(m, 60)
print("%d:%02d:%02d" % (h, m, s))

结果:9:50:00

2、转化成日期时间格式

?
1
2
3
4
import time
timeArray = time.localtime(1462482700)#秒数
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print(otherStyleTime)

结果:2016-05-06 05:11:40

以上这篇python将秒数转化为时间格式的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/xiaoQL520/article/details/78435175