从 Python 中的 datetime.now() 中减去 SQL DATETIME

发布于 2024-12-07 04:56:02 字数 399 浏览 1 评论 0原文

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

I have a DATETIME field in SQL. Its content is: 2012-08-26 13:00:00

I want to know how much time has passed from that date until now.

In Python 2.7, it's easy:

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

But I have a web server running Python 2.4. In Python 2.4 strptime is not in the datetime module. I can't figure out how to accomplish the same thing in 2.4.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

固执像三岁 2024-12-14 04:56:02

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])

time.strptime is in Python 2.4. It returns a time tuple, which can be then converted to a datetime as shown below.

start = time.strptime('2012-08-26 13:00:00', '%Y-%m-%d %H:%M:%S')
start = datetime.datetime(*start[:6])
小镇女孩 2024-12-14 04:56:02

在Python 2.4中,strptime()函数位于time模块中。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文