How to calculate the difference in time in minutes for the following timestamp in python
2010-01-01 17:31:22
2010-01-03 17:31:22
|
|
|
|||||||
|
|
The accepted answer above doesn't work in cases where the dates don't have the same exact time. original problem:
d2-d1 gives you a datetime.timedelta and when you use days it will only show you the days in the timedelta. In this case it works fine, but if you would have the following.
It would have still given you the same answer since it still returns 2 for days, it ignores the hour, min and second from the timedelta. A better approach would be to convert the dates to a common format and then do the calculation. The easiest way to do this is to convert them to unix timestamps. Here is the code to do that.
|
|||
|
|
|
Use |
|||
|
|
|
To calcul with different time date
|
||||
|
|
|
As was kind of said already, you need to use
|
|||
|
|