http://qiita.com/7of9/items/ceed758eaa49bc421c72 Ich möchte den Unterschied als Sekunden in der Fortsetzung von nehmen.
Referenz http://stackoverflow.com/questions/2788871/python-date-difference-in-minutes
Implementierung http://ideone.com/H42MLS
from datetime import datetime as dt
from datetime import timedelta
strdt1 = "2015-12-09 12:40:08"
strdt2 = "2015-12-09 12:35:08"
tdt1 = dt.strptime(strdt1, "%Y-%m-%d %H:%M:%S")
tdt2 = dt.strptime(strdt2, "%Y-%m-%d %H:%M:%S")
print tdt1 - tdt2
diff_sec = (tdt1 - tdt2).seconds
print diff_sec
Ergebnis
Success time: 0.01 memory: 9176 signal:0
0:05:00
300
Recommended Posts