从 Python 中的 datetime.now() 中减去 SQL DATETIME
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
time.strptime 位于 Python 2.4 中。它返回一个时间元组,然后可以将其转换为日期时间,如下所示。
time.strptime is in Python 2.4. It returns a time tuple, which can be then converted to a datetime as shown below.
在Python 2.4中,
strptime()
函数位于time
模块中。in python 2.4, the
strptime()
function is located in thetime
module.