python将秒数转化为时间格式的实例
程序员文章站
2022-05-20 12:02:26
1、转化成时间格式
seconds =35400
m, s = divmod(seconds, 60)
h, m = divmod(m, 60)
print...
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
以上这篇python将秒数转化为时间格式的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。