发布时间:2022-06-08 09:47:15 人气:687 作者:多测师
在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)。
使用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相关知识,请关注多测师。https://www.e70w.com/xwzx/