Files
30-seconds-of-code/snippets/add-days.md
2023-04-28 22:24:23 +03:00

642 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Add days to date snippet
date
orange-flower 2020-10-28T16:19:04+02:00

Calculates the date of n days from the given date.

  • Use datetime.timedelta and the + operator to calculate the new datetime.datetime value after adding n days to d.
  • Omit the second argument, d, to use a default value of datetime.today().
from datetime import datetime, timedelta

def add_days(n, d = datetime.today()):
  return d + timedelta(n)
from datetime import date

add_days(5, date(2020, 10, 25)) # date(2020, 10, 30)
add_days(-5, date(2020, 10, 25)) # date(2020, 10, 20)