Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a python newbie (2 weeks) and I'm having trouble formatting a datetime.timedelta object.

Here's what I'm trying to do. I have a list of objects and one of the members of the class of the object is a timedelta object that shows the duration of an event. I would like to display that duration in the format of hours:minutes.

I have tried a variety of methods for doing this and I'm having difficulty. My current approach is to add methods to the class for my objects that return hours and minutes. I can get the hours by dividing the timedelta.seconds by 3600 and rounding it. I'm having trouble with getting the remainder seconds and converting that to minutes.

By the way, I'm using Google AppEngine with DJango Templates for presentation.

If anyone can help or knows of a better way to resolve this, I would be very happy.

Thanks,

share|improve this question
1  
Would be nice if timedelta had an equivalent of the strftime() method. – JS. Aug 22 '12 at 22:14

9 Answers

As you know, you can get the seconds from a timedelta object by accessing the .seconds attribute.

You can convert that to hours and remainder by using a combination of modulo and subtraction:

# arbitrary number of seconds
s = 13420
# hours
hours = s // 3600 
# remaining seconds
s = s - (hours * 3600)
# minutes
minutes = s // 60
# remaining seconds
seconds = s - (minutes * 60)
# total time
print '%s:%s:%s' % (hours, minutes, seconds)
# result: 3:43:40

However, python provides the builtin function divmod() which allows us to simplify this code:

s = 13420
hours, remainder = divmod(s, 3600)
minutes, seconds = divmod(remainder, 60)
print '%s:%s:%s' % (hours, minutes, seconds)
# result: 3:43:40

Hope this helps!

share|improve this answer
For negative timedeltas you should do evaluate the sign first and then do abs(s). – mbarkhau May 4 '11 at 10:45
4  
+1 for pointing out divmod() – RobM Aug 12 '11 at 16:29

You can just convert the timedelta to a string with str(). Here's an example:

import datetime
start = datetime.datetime(2009,2,10,14,00)
end   = datetime.datetime(2009,2,10,16,00)
delta = end-start
print str(delta)
# prints 2:00:00
share|improve this answer
8  
More like calling the str() method with timedelta as its argument. – joeforker Feb 12 '09 at 18:23
>>> str(datetime.timedelta(hours=10.56))
10:33:36

>>> td = datetime.timedelta(hours=10.505) # any timedelta object
>>> ':'.join(str(td).split(':')[:2])
10:30

Passing the timedelta object to the str() function calls the same formatting code used if we simply type print td. Since you don't want the seconds, we can split the string by colons (3 parts) and put it back together with only the first 2 parts.

share|improve this answer
Thanks for your answer joeforker, but I'm not sure I understand your response. I am getting a time delta by way of datetime - datetime. I don't know the hours. Plus, it looks like your example includes seconds, how would I remove that? – mawcs Feb 11 '09 at 20:46
Doesn't matter where you get the timedelta object, it will format the same. – joeforker Feb 11 '09 at 20:48
1  
If it's longer than a day, it will format as e.g. "4 days, 8:00" after the split/join processing. – joeforker Feb 11 '09 at 20:52

My datetime.timedelta objects went greater than a day. So here is a further problem. All the discussion above assumes less than a day. A timedelta is actually a tuple of days, seconds and microseconds. The above discussion should use td.seconds as joe did, but if you have days it is NOT included in the seconds value.

I am getting a span of time between 2 datetimes and printing days and hours.

span = currentdt - previousdt
print '%d,%d\n' % (span.days,span.seconds/3600)
share|improve this answer
This is the future proof solution. – Jibin Aug 22 '12 at 12:17
def td_format(td_object):
        seconds = int(td_object.total_seconds())
        periods = [
                ('year',        60*60*24*365),
                ('month',       60*60*24*30),
                ('day',         60*60*24),
                ('hour',        60*60),
                ('minute',      60),
                ('second',      1)
                ]

        strings=[]
        for period_name,period_seconds in periods:
                if seconds > period_seconds:
                        period_value , seconds = divmod(seconds,period_seconds)
                        if period_value == 1:
                                strings.append("%s %s" % (period_value, period_name))
                        else:
                                strings.append("%s %ss" % (period_value, period_name))

        return ", ".join(strings)
share|improve this answer

Questioner wants a nicer format than the typical:

  >>> import datetime
  >>> datetime.timedelta(seconds=41000)
  datetime.timedelta(0, 41000)
  >>> str(datetime.timedelta(seconds=41000))
  '11:23:20'
  >>> str(datetime.timedelta(seconds=4102.33))
  '1:08:22.330000'
  >>> str(datetime.timedelta(seconds=413302.33))
  '4 days, 18:48:22.330000'

So, really there's two formats, one where days are 0 and it's left out, and another where there's text "n days, h:m:s". But, the seconds may have fractions, and there's no leading zeroes in the printouts, so columns are messy.

Here's my routine, if you like it:

def printNiceTimeDelta(stime, etime):
    delay = datetime.timedelta(seconds=(etime - stime))
    if (delay.days > 0):
        out = str(delay).replace(" days, ", ":")
    else:
        out = "0:" + str(delay)
    outAr = out.split(':')
    outAr = ["%02d" % (int(float(x))) for x in outAr]
    out   = ":".join(outAr)
    return out

this returns output as dd:hh:mm:ss format:

00:00:00:15
00:00:00:19
02:01:31:40
02:01:32:22

I did think about adding years to this, but this is left as an exercise for the reader, since the output is safe at over 1 year:

>>> str(datetime.timedelta(seconds=99999999))
'1157 days, 9:46:39'
share|improve this answer

Following Joe's example value above, I'd use the modulus arithmetic operator, thusly:

td = datetime.timedelta(hours=10.56)
td_str = "%d:%d" % (td.seconds/3600, td.seconds%3600/60)

Note that integer division in Python rounds down by default; if you want to be more explicit, use math.floor() or math.ceil() as appropriate.

share|improve this answer
timedelta already knows how to format itself, as in 'print some_timedelta'. – joeforker Feb 11 '09 at 20:57
Yeah, but it can't accept an arbitrary format string, which is what Michael was asking. Although now that I think about it 3600 division mod makes the hours-seconds assumption which causes problems at leap seconds. – UltraNurd Feb 11 '09 at 21:01
Yeah, but he doesn't want an arbitrary format string, he wants almost exactly the default behaviour. – joeforker Feb 11 '09 at 21:07
Don't forget // for truncating division in Python 3000 – joeforker Feb 12 '09 at 18:22
Ah, I've only be using up through 2.6. – UltraNurd Feb 12 '09 at 19:36
show 2 more comments

He already has a timedelta object so why not use its built-in method total_seconds() to convert it to seconds, then use divmod() to get hours and minutes?

    hours, remainder = divmod(myTimeDelta.total_seconds(), 3600)
    minutes, seconds = divmod(remainder, 60)

    # Formatted only for hours and minutes as requested
    print '%s:%s' % (hours, minutes)

This works regardless if the time delta has even days or years.

share|improve this answer
up vote -5 down vote accepted

Thanks everyone for your help. I took many of your ideas and put them together, let me know what you think.

I added two methods to the class like this:

def hours(self):
    retval = ""
    if self.totalTime:
        hoursfloat = self.totalTime.seconds / 3600
        retval = round(hoursfloat)
    return retval

def minutes(self):
    retval = ""
    if self.totalTime:
        minutesfloat = self.totalTime.seconds / 60
        hoursAsMinutes = self.hours() * 60
        retval = round(minutesfloat - hoursAsMinutes)
    return retval

In my django I used this (sum is the object and it is in a dictionary):

<td>{{ sum.0 }}</td>    
<td>{{ sum.1.hours|stringformat:"d" }}:{{ sum.1.minutes|stringformat:"#02.0d" }}</td>
share|improve this answer
It's a bit long. I would suggest: def hhmm(self): return ':'.join(str(td).split(':')[:2]) <td>{{ sum.1.hhmm }}</td> – joeforker Feb 12 '09 at 13:57
1  
Just use divmod() as shown in the "Difference of Two Dates" example at docs.python.org/release/2.5.2/lib/datetime-timedelta.html – Tom Nov 17 '10 at 16:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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