网络编程
位置:首页>> 网络编程>> Python编程>> python将秒数转化为时间格式的实例

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

作者:爱数星星的孩子  发布时间:2023-09-24 12:10:22 

标签: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

来源:https://blog.csdn.net/xiaoQL520/article/details/78435175

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com