Python format timedelta to string - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T06:13:07Zhttp://stackoverflow.com/feeds/question/538666http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/538666/python-format-timedelta-to-string1Python format timedelta to stringmawcs2009-02-11T20:40:43Z2009-10-29T14:23:22Z
<p>Hi, I'm a python newbie (2 weeks) and I'm having trouble formatting a datetime.timedelta object.</p>
<p>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.</p>
<p>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.</p>
<p>By the way, I'm using Google AppEngine with DJango Templates for presentation.</p>
<p>If anyone can help or knows of a better way to resolve this, I would be very happy.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/538666/python-format-timedelta-to-string/538687#5386872Answer by joeforker for Python format timedelta to stringjoeforker2009-02-11T20:44:39Z2009-02-11T21:00:54Z<pre><code>>>> 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
</code></pre>
<p>Passing the <code>timedelta</code> object to the <code>str()</code> function calls the same formatting code used if we simply type <code>print td</code>. 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.</p>
http://stackoverflow.com/questions/538666/python-format-timedelta-to-string/538720#5387200Answer by UltraNurd for Python format timedelta to stringUltraNurd2009-02-11T20:52:18Z2009-02-11T20:52:18Z<p>Following Joe's example value above, I'd use the modulus arithmetic operator, thusly:</p>
<pre><code>td = datetime.timedelta(hours=10.56)
td_str = "%d:%d" % (td.seconds/3600, td.seconds%3600/60)
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/538666/python-format-timedelta-to-string/538721#5387215Answer by Parand for Python format timedelta to stringParand2009-02-11T20:52:24Z2009-02-11T20:52:24Z<p>You can just call the "str" method on the timedelta. Here's an example:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/538666/python-format-timedelta-to-string/538818#538818-1Answer by mawcs for Python format timedelta to stringmawcs2009-02-11T21:11:26Z2009-02-11T21:11:26Z<p>Thanks everyone for your help. I took many of your ideas and put them together, let me know what you think.</p>
<p>I added two methods to the class like this:</p>
<pre><code>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
</code></pre>
<p>In my django I used this (sum is the object and it is in a dictionary):</p>
<pre><code><td>{{ sum.0 }}</td>
<td>{{ sum.1.hours|stringformat:"d" }}:{{ sum.1.minutes|stringformat:"#02.0d" }}</td>
</code></pre>
http://stackoverflow.com/questions/538666/python-format-timedelta-to-string/539360#5393603Answer by John Fouhy for Python format timedelta to stringJohn Fouhy2009-02-11T23:34:33Z2009-02-11T23:34:33Z<p>As you know, you can get the seconds from a timedelta object by accessing the <code>.seconds</code> attribute.</p>
<p>You can convert that to hours and remainder by using a combination of modulo and subtraction:</p>
<pre><code># 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
</code></pre>
<p>However, python provides the builtin function divmod() which allows us to simplify this code:</p>
<pre><code>s = 13420
hours, remainder = divmod(s, 3600)
minutes, seconds = divmod(remainder, 60)
print '%s:%s:%s' % (hours, minutes, seconds)
# result: 3:43:40
</code></pre>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/538666/python-format-timedelta-to-string/1644095#16440950Answer by catfishlar for Python format timedelta to stringcatfishlar2009-10-29T14:23:22Z2009-10-29T14:23:22Z<p>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. </p>
<p>I am getting a span of time between 2 datetimes and printing days and hours.</p>
<p>span = currentdt - previousdt
print '%d,%d\n' % (span.days,span.seconds/3600)</p>