Qiao
Qiao

Reputation: 17049

How much days left from today to given date

I have a date - 2015.05.20

What is the best way to calculate using python how much days left from today till this date?

from datetime import *
today = date.today()
future = date(2015,05,20)
???

Upvotes: 13

Views: 21900

Answers (2)

Jochen Ritzel
Jochen Ritzel

Reputation: 107648

import datetime

today = datetime.date.today()
future = datetime.date(2019,9,20)
diff = future - today
print (diff.days)

diff is a timedelta object.

Upvotes: 29

nos
nos

Reputation: 229158

subtract them.

>>> from datetime import *
>>> today = date.today()
>>> future = date(2015,05,20)
>>> str(future - today)
'1326 days, 0:00:00'
>>> (future - today).days
1326

Upvotes: 4

Related Questions