Python: How to get the sum of timedelta?
Eg. I just got a lot of timedelta object, and now I want the sum. That's it!
feedback
|
|
datetime combine method allows you to combine time with a delta
timedelta can be combined using usual '+' operator
You can read the datetime module docs and a very good simple introduction at | |||
|
feedback
|
|
To add timedeltas you can use the builtin operator
To add a lot of timedeltas you can use sum:
Or reduce:
| |||
|
feedback
|
|
As this "just works", I assume this question lacks some detail... Just like this:
| |||
|
feedback
|
|
I am pretty sure that by "sum" he means that he wants the value of the sum in a primitive type (eg integer) rather than a datetime object. Note that you can always use the
So in this case, it looks like we probably want seconds.
Which looks right to me:
| ||||
feedback
|
|
(Edit: Assuming that by "sum timedelta" you mean "convert a timedelta to int seconds".) This is very inefficient, but it is simple:
This converts a Unix timestamp ( | |||||
feedback
|