How to find datetime 10 mins after current time?

前端 未结 3 844
梦毁少年i
梦毁少年i 2020-12-05 06:16

I want to find out the datetime 10 mins after current time. Let\'s say we have

from datetime import datetime  
now = datetime.now()  
new_now = datetime.str         


        
3条回答
  •  孤城傲影
    2020-12-05 06:32

    This is a duplicate of this question. You basically just need to add a timedelta of 10 minutes to get the time you want.

    now = datetime.datetime.now()
    now_plus_10 = now + datetime.timedelta(minutes = 10)
    

提交回复
热议问题