I\'m having trouble formatting a datetime.timedelta object.
datetime.timedelta
Here\'s what I\'m trying to do: I have a list of objects and one of the members of the cl
You can just convert the timedelta to a string with str(). Here's an example:
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