Convert a given number of seconds into a human-readable hours:minutes:seconds string.
Constraints
Example
>>> convert_seconds(3661) '1:01:01' >>> convert_seconds(0) '0:00:00' >>> convert_seconds(59) '0:00:59'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints