检查时间以确保我在循环中不会超过设置的最大持续时间? (Python)
我可以使用时间模块的什么函数来获取时间并对其进行数学运算?
MAX_DURATION = 60
startTime = get the time
while(True):
wait random seconds
curTime = get the time
if curTime - startTime > MAX_DURATION:
break
What function of the time module can I use to get the time and do math on it?
MAX_DURATION = 60
startTime = get the time
while(True):
wait random seconds
curTime = get the time
if curTime - startTime > MAX_DURATION:
break
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该适合您的需求。
This should fit your needs.
您需要
datetime
,尤其是timedelta
: http://docs.python.org/library/datetime.html例如:(
当然,在这个非常简单的情况下,最好简单地使用
time.time()
(它返回一个 时间戳),然后将其与秒数进行比较(例如,time.time() - start > MAX_SECONDS
)…但这就是你以“完全通用”的方式做到这一点)You'll want
datetime
and especiallytimedelta
: http://docs.python.org/library/datetime.htmlFor example:
(of course, in this very simple case it might be better to simply use
time.time()
(which returns a timestamp), then compare that with a number of seconds (ex,time.time() - start > MAX_SECONDS
)… But this is how you'd do it in a “fully general” way)