当前位置:主页 > 软件编程 > Python代码 >

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

时间:2021-04-07 10:11:14 | 栏目:Python代码 | 点击:

1、转化成时间格式

seconds =35400
m, s = divmod(seconds, 60)
h, m = divmod(m, 60)
print("%d:%02d:%02d" % (h, m, s))

结果:9:50:00

2、转化成日期时间格式

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

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

您可能感兴趣的文章:

相关文章