Hi,
Please, how to convert an int (number a seconds) to these formats: mm:ss or hh:mm:ss ?
I need to do this with Python code (and if possible in a Django template ?).
Thank you very much ;-)
|
|
Hi, Please, how to convert an int (number a seconds) to these formats: mm:ss or hh:mm:ss ? I need to do this with Python code (and if possible in a Django template ?). Thank you very much ;-)
|
|||
|
|
|
I can't believe any of the many answers gives what I'd consider the "one obvious way to do it" (and I'm not even Dutch...!-) -- up to just below 24 hours' worth of seconds (86399 seconds, specifically):
Doing it in a Django template's more finicky, since the
Depending on your exact needs, it might be more convenient to define a custom filter for this formatting task in your app. |
||||||
|
|
|
|
||||||||||||||||
|
|
|
You can calculate the number of minutes and hours from the number of seconds by simple division:
Here |
||
|
|
|
Have you read up on the datetime module? Edit/update: SilentGhost's answer has the details my answer leaves out. If you like this answer, +1 his as well (or instead). Reposted here:
|
||||||||||||
|
|
|
Code that does what was requested, with examples, and showing how cases he didn't specify are handled:
You can--and probably should--store this as a timedelta rather than an int, but that's a separate issue and timedelta doesn't actually make this particular task any easier. |
||||||||||
|
|
|
Just be careful when dividing by 60: division between integers returns an integer -> 12/60 = 0 unless you import division from future. The following is copy and pasted from Python 2.6.2:
|
||
|
|
|
|
Not being a python person but easiest without any libraries just:
Updated code, thanks sth |
||||||||
|
|
|
Besides the fact that Python has built in support for dates and times (see bigmattyh's response), finding minutes or hours from seconds is easy:
Now, when you want to display minutes or seconds, MOD them by 60 so that they will not be larger than 59 |
||||||
|
|
|
If you use divmod, you are immune to different flavors of integer division:
Prints:
|
|||
|
|