2
votes
4answers
723 views
Python Time Seconds to h:m:s
I have a function that returns information in seconds, but I need to store that information in hours:minutes:seconds. Is there an easy way to convert the seconds to this format in python?
…
-2
votes
Python Time Seconds to h:m:s
def GetInHMS(seconds):
hours = seconds / 3600
seconds -= 3600*hours
minutes = seconds / 60
seconds -= 60*minutes
if hours == 0:
return "%d:%d" % (minutes, secon …
