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?
|
|
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:
|
|||
|
|
or you can do
|
||||||
|
|
|
By using the
|
||||||
|
|
|
This is not working for some reason. It keeps saying my tabbing is wrong...
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:
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. |
||||||||||
|
