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)

 

posted @ 2021-12-29 11:40  佳宁  阅读(1493)  评论(0编辑  收藏  举报