Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (47.6k points)

If I have two dates (ex. '8/18/2008' and '9/26/2008'), what is the best way to get the number of days between these two dates?

1 Answer

0 votes
by (106k points)

There are multiple ways of solving the above problem but I am discussing the best approach here:-

First thing you can do is take two date objects once you have two date objects, you can just subtract them and you will get the number of days between them below is the code how we will do this:-

from datetime import date

d0 = date(2019, 6, 10)

d1 = date(2019, 7, 8)

delta = d1 - d0

print(delta.days)

image

Related questions

0 votes
1 answer
0 votes
1 answer
asked Jul 16, 2019 in SQL by Tech4ever (20.3k points)
0 votes
1 answer
0 votes
1 answer
asked Jul 31, 2019 in Java by noah kapoor (5.3k points)

Browse Categories

...