below a simple example using the Python interpreter:
>>> import datetime
>>>
>>> time=datetime.timedelta(seconds=10)
>>> str(time)
'0:00:10'
>>>
how can I change the syntaxt of the time object when I convert it in a string? As reslt, I want to see '00:00:10' and not '0:00:10'. I really don't understand why the last zero in the hours block is missing, I want to see always two digits in each block. how can I do it?