Posted in Python onSeptember 16, 2018
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将秒数转化为时间格式的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
python将秒数转化为时间格式的实例
- Author -
爱数星星的孩子声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@