Published
- 1 min read
python format seconds to hh mm ss
The solution for this is noted below
python format seconds to hh mm ss
Solution
import time
time.strftime('%H:%M:%S', time.gmtime(12345))
#'03:25:45'
Try other methods by searching on the site. That is if this doesn’t work