gpt4 book ai didi

python - 如何在当前时间后 10 分钟找到日期时间?

转载 作者:IT老高 更新时间:2023-10-28 20:26:42 25 4
gpt4 key购买 nike

我想找出当前时间后 10 分钟的日期时间。假设我们有

from datetime import datetime  
now = datetime.now()
new_now = datetime.strptime(now, '%a, %d %b %Y %H:%M:%S %Z')

我想在 10 分钟后找到这个 nownew_now。我怎样才能做到这一点?

最佳答案

这是 this 的副本问题。你基本上只需要添加一个timedelta 10 分钟即可获得您想要的时间。

from datetime import datetime, timedelta
now = datetime.now()
now_plus_10 = now + timedelta(minutes = 10)

关于python - 如何在当前时间后 10 分钟找到日期时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6205442/

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