Answers for "convert seconds to hh mm ss in python"

0

python format seconds to hh mm ss

import time
time.strftime('%H:%M:%S', time.gmtime(12345))
#'03:25:45'
Posted by: Guest on March-20-2021

Code answers related to "convert seconds to hh mm ss in python"

Python Answers by Framework

Browse Popular Code Answers by Language