Python从键盘输入一个5位数的秒数?
seconds = 10000 --转化的秒的时间
m, s = divmod(seconds, 60)
h, m = divmod(m, 60)
print("%d:%02d:%02d" % (h, m, s))