目录

python秒数转化为时分秒_python如何把秒换成时分秒

目录

python秒数转化为时分秒_python如何把秒换成时分秒

https://i-blog.csdnimg.cn/blog_migrate/2a9d4a4ec8b65cf4c5a7591de2ead290.jpeg

在python中可以使用下面的方法将秒数转换为时分秒:seconds=5555

m, s = divmod(seconds, 60)

h, m = divmod(m, 60)

print ("%02d:%02d:%02d" % (h, m, s))

输出结果:01:32:35

python divmod() 函数把除数和余数运算结果结合起来,返回一个包含商和余数的元组(a // b, a % b)。

2、使用strftime()与gmtime()函数把秒转换为时分秒from time import strftime

from time import gmtime

strftime("%H:%M:%S", gmtime(5555))

输出结果如下:‘01:32:35’

gmtime() 函数将一个时间戳转换为UTC时区(0时区)的struct_time,可选的参数sec表示从1970-1-1以来的秒数。其默认值为time.time(),函数返回time.struct_time类型的对象。

strftime() 函数接收以时间元组,并返回以可读字符串表示的当地时间,格式由参数format决定。

更多Python知识请关注Python自学网。