Menu

gitpiper

days_from_now python Code Snippet in 2024

dateintermediate

Last Updated: 20 April 2024

Calculates the date of n days from today.

  • Use datetime.date.today() to get the current day.
  • Use datetime.timedelta to add n 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)

python snippet similar to days_from_now For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️