3

我在 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 中完成同样的事情。

4

2 回答 2

11

time.strptime在 Python 2.4 中。它返回一个时间元组,然后可以将其转换为日期时间,如下所示。

start = time.strptime('2012-08-26 13:00:00', '%Y-%m-%d %H:%M:%S')
start = datetime.datetime(*start[:6])
于 2011-09-27T13:36:58.120 回答
0

in python 2.4, the strptime() function is located in the time module.

于 2011-09-27T13:39:48.943 回答