python将秒数转化为时间格式

来源:互联网 发布:同花顺证券行情分析软件 编辑:程序博客网 时间:2024/06/15 01:59
1.转化成时间格式
seconds =35400m, s = divmod(seconds, 60)h, m = divmod(m, 60)print("%d:%02d:%02d" % (h, m, s))
结果:9:50:00
2.转化成日期时间格式
import timetimeArray = time.localtime(1462482700)#秒数otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)print(otherStyleTime)

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