Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wrote this little script to format a timedelta object according to my needs:

   def due_format(self):
        time_diff = abs((self.due - datetime.datetime.now()).total_seconds())
        days = time_diff / 60 / 60 / 24
        hours = time_diff / 60 / 60
        minutes = time_diff / 60
        hours_wo_days = hours - (math.floor(days) * 24)
        minutes_wo_hours = minutes - (math.floor(hours) * 60)
        if (days >= 7):
            self.due_format = '{} Days'.format(int(days))
        elif (hours > 48):
            self.due_format = '{} Days, {} Hours'.format(int(days), int(hours_wo_days))
        elif (hours <= 48 and hours >= 10 ):
            self.due_format = '{} Hours'.format(int(hours))
        elif (hours <= 1):
            self.due_format = '{} Minutes'.format(int(minutes))
        elif (hours < 10):
            self.due_format = '{} Hours, {:.0f} Minutes'.format(int(hours), int(minutes_wo_hours))

I'm getting the feeling that my approach makes things overly complicated and wanted to ask you guys if you would've attacked this problem differently. Are there any shortcuts that I could take advantage of? I hope this question is appropriate for SO.

share|improve this question
1  
Could you explain what it is exactly that you find unsatisfactory about your current approach? – NPE Sep 29 '11 at 6:44
I was just hoping there was an easier / more pythonic way to do it. just wanna learn :) – Daniel Richter Sep 29 '11 at 6:46
Always mention what Python you use. In this case .total_seconds implies 3.2 – Tobias Sep 29 '11 at 6:55
@Tobias: total_seconds is available in Python 2.7. – eryksun Sep 29 '11 at 7:08
docs.python.org/py3k/library/datetime.html says "New in version 3.2", but you're right. – Tobias Sep 29 '11 at 10:54

1 Answer

up vote 2 down vote accepted

timedelta instance have attributes .days and .seconds which save a few lines. They also keep the values small, so you can convert to int once early instead of for each string format. This also removes the need for abs() and .floor.

share|improve this answer

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.