I have created a list of timedelta objects and i need to get the average of this list. when i try to do
return (sum(delta_list)/(len(delta_list)-1))
i get TypeError: unsupported operand type(s) for +: 'int' and 'datetime.timedelta'
i am new at working with pythons datetime classes. I also would like to know how to get this average into a format like days: hours: mins: i don't need anything smaller than mins.
Thanks in advanced.. Don't thank in advance and forget to thank later. Learn to accept your answers. – user225312 Feb 15 '11 at 16:19