I have value 1 day, 14:44:00
which I would like transform into this: 38:44:00
.
I've tried the following code:
myTime = ((myTime.days*24+myTime.hours), myTime.minutes, myTime.seconds)
But it doesn't work. I got this error message:
'datetime.timedelta' object has no attribute 'hours'