Seconds to hours

1 · John Cook · Aug. 7, 2022, 10:11 p.m.
Suppose you have a number of seconds n and you want to convert it to hours and seconds. If you divide n by 3600, the quotient is the number of hours and the remainder is the number of seconds. For example, suppose n = 8072022. Here’s the obvious way to do the calculation in Python: […] The post Seconds to hours first appeared on John D. Cook....