vote up 2 vote down star
2

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?

flag

4 Answers

vote up 3 vote down check
def GetInHMS(seconds):
    hours = seconds / 3600
    seconds -= 3600*hours
    minutes = seconds / 60
    seconds -= 60*minutes
    return "%02d:%02d:%02d" % (hours, minutes, seconds)

Response from comments:

If you want to remove the hours part if there are no hours, you can just add in an extra if statement:

def GetInHMS(seconds):
    hours = seconds / 3600
    seconds -= 3600*hours
    minutes = seconds / 60
    seconds -= 60*minutes
    if hours == 0:
        return "%02d:%02d" % (minutes, seconds)
    return "%02d:%02d:%02d" % (hours, minutes, seconds)


>>> GetInHMS(3964)
'01:06:04'
>>> GetInHMS(1234)
'20:34'
>>> GetInHMS(12345)
'03:25:45'
link|flag
Is there any way to not show hours if there is a 0 there easily? – Specto Apr 21 at 23:17
Just return a shortened string if h == 0 – FogleBird Apr 21 at 23:18
I've put a response in my answer, above. – Smashery Apr 21 at 23:22
Hrm, I keep getting an error, posted below. – Specto Apr 21 at 23:32
vote up 10 vote down

or you can do

>>> import datetime
>>> str(datetime.timedelta(seconds=666))
'0:11:06'
link|flag
Very nice - I'll have to keep that one in my toolbox – Smashery Apr 21 at 23:48
1  
This is the best way, IMHO, as you can then use arithmetic on the timedelta and any datetime objects. – Matthew Schinckel Apr 22 at 3:13
vote up 10 vote down

By using the divmod() function, which does only a single division to produce both the quotient and the remainder, you can have the result very quickly with only two mathematical operations:

m, s = divmod(seconds, 60)
h, m = divmod(m, 60)
print "%d:%02d:%02d" % (h, m, s)
link|flag
+1 for divmod. It's made for situations like this. – John Fouhy Apr 21 at 23:47
I second Paolo's statement - haven't heard of divmod before. I'll have to remember it. – Smashery Apr 21 at 23:50
I edited your answer to include a link to the documentation, as it is encouraged to do whenever possible. – Paolo Bergantino Apr 22 at 9:00
vote up -2 vote down
def GetInHMS(seconds):
    hours = seconds / 3600
    seconds -= 3600*hours
    minutes = seconds / 60
    seconds -= 60*minutes

    if hours == 0:
        return "%d:%d" % (minutes, seconds)
    elif minutes == 0:
        return "%d" % (seconds)
    return "%d:%d:%d" % (hours, minutes, seconds)

This is not working for some reason. It keeps saying my tabbing is wrong...

  File myfile.py, line 12
    if hours == 0:
    ^

IndentationError: unexpected indent

Possible Solution:

Try deleting all the indents, and then put them all back with individually typed spaces.

Also:

I'd recommend changing it to:

def GetInHMS(seconds):
    hours = seconds / 3600
    seconds -= 3600*hours
    minutes = seconds / 60
    seconds -= 60*minutes

    if hours == 0:
        return "%02d:%02d" % (minutes, seconds)
        if minutes == 0:
            return "%d" % (seconds)
    return "%d:%02d:%02d" % (hours, minutes, seconds)

The %02d's make it look prettier, and indenting the 'if minutes == 0' removes the logical error that might come up if you do have hours, but no minutes.

link|flag
Strange - when I copy and paste what you've got there, it works fine. Perhaps try deleting all the indentation, and doing it again using only spaces (a mixture of tabs and spaces can mess with it). – Smashery Apr 21 at 23:32
weird, oh well, vim is crazy sometimes. – Specto Apr 21 at 23:33
Two other points: if you want it to say 3:05:01 rather than 3:5:1, you'll need to make all the %d's into %02d's. – Smashery Apr 21 at 23:33
Also, the line 'elif minutes == 0' will give you some logical errors. For instance, if the time is 4:00:35, your 'elif minutes == 0' will come up true, so it will only give you the seconds ('35'). You should instead make it 'if hours == 0: -> if minutes == 0: -> return "%d" % (seconds) <- return "%d%d" % (minutes, seconds) – Smashery Apr 21 at 23:35
Additional information (like this) should be edited into the equation, not put into an answer. – David Apr 21 at 23:36
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.