我在 SQL 中有一个 DATETIME 字段。其内容为:2012-08-26 13:00:00
我想知道从那个日期到现在已经过去了多少时间。
在 Python 2.7 中,这很容易:
import time,datetime
start = datetime.datetime.strptime('2012-08-26 13:00:00', '%Y-%m-%d %H:%M:%S')
end = datetime.datetime.now()
delta = start - end
print delta
但我有一个运行 Python 2.4 的 Web 服务器。在 Python 2.4 中,strptime 不在 datetime 模块中。我不知道如何在 2.4 中完成同样的事情。