gpt4 book ai didi

python - 如何检查日期时间是否超过 20 秒

转载 作者:IT老高 更新时间:2023-10-28 22:03:21 28 4
gpt4 key购买 nike

这是我第一次来这里,所以我希望我在正确的地方发布这个问题。 :)

我需要为我的脚本构建防洪控制,但我不擅长使用 UTC 和其他东西进行日期时间到时间的转换。我希望你能帮助我。我正在使用带有 Python 的 Google App Engine。我在 DataStore 数据库中有一个 datetime 属性,应该检查它是否超过 20 秒,然后继续。

有人可以帮帮我吗?

所以在半伪:

q = db.GqlQuery("SELECT * FROM Kudo WHERE fromuser = :1", user)
lastplus = q.get()

if lastplus.date is older than 20 seconds:
print"Go!"

最佳答案

您可以使用 datetime.timedelta 数据类型,如下所示:

import datetime
lastplus = q.get()
if lastplus.date < datetime.datetime.now()-datetime.timedelta(seconds=20):
print "Go"

在此处了解更多信息:http://docs.python.org/library/datetime.html

干杯,

菲利普

关于python - 如何检查日期时间是否超过 20 秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2398205/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com