convert from second to HH:mm:ss in python code example
Example: python format seconds to hh mm ss
import time
time.strftime('%H:%M:%S', time.gmtime(12345))
#'03:25:45'
import time
time.strftime('%H:%M:%S', time.gmtime(12345))
#'03:25:45'