I am trying to calculate the difference between two different time stamps mentioned below. I am getting a value of 25324 seconds which is less than the actual difference . What is the issue here ?
from datetime import datetime
time_format = "%Y-%m-%d %H:%M:%S"
d1 = datetime.strptime('2013-12-12 03:59:33', time_format)
d2 = datetime.strptime('2013-12-09 20:57:29', time_format)
print (d1 - d2).seconds
25324