Calculates the date of n
days from today.
- Use
datetime.date.today()
to get the current day. - Use
datetime.timedelta
to addn
days from today’s date.
代码实现
from datetime import timedelta, date
def days_from_now(n):
return date.today() + timedelta(n)
使用样例
days_from_now(5) # date(2020, 11, 02)