# школоло h = 3600 // 60 // 60 m = (sec - h*60*60) // 60 s = sec - h*60*60 - m*60 h=str(h) if m < 10: mm = str(0) + str(m) else: mm = str(m) if s < 10: ss = str(0) + str(s) else: ss = str(s) out = h+':'+mm+':'+ss print(out)
# штудент a = [ sec//pow(60,i)%60 for i in range(2,-1,-1) ] b = [ '{0:02d}'.format(k) for k in a] c = ':'.join(b) print(c)
# прогер from datetime import timedelta print(timedelta(seconds=sec))
Пример
входные
3600
выходные
1:00:00