Home >Backend Development >Python Tutorial >How Can I Calculate the Number of Days Between Two Dates in Python?

How Can I Calculate the Number of Days Between Two Dates in Python?

Mary-Kate Olsen
Mary-Kate OlsenOriginal
2024-12-03 07:32:09419browse

How Can I Calculate the Number of Days Between Two Dates in Python?

Determining the Time Interval between Dates

Calculating the number of days between two given dates is a common programming task. In Python, there are efficient methods to achieve this.

Using Datetime Objects

If you have dates stored as datetime objects (such as '8/18/2008' and '9/26/2008'), the simplest approach is to subtract one date from the other:

from datetime import date

d0 = date(2008, 8, 18)
d1 = date(2008, 9, 26)
delta = d1 - d0
print(delta.days)

This will yield a timedelta object, which contains information about the duration between the two dates. Accessing the days attribute of the timedelta will give you the number of days between the dates.

Additional Resources

For more information on datetime operations in Python, refer to the official documentation at:

  • https://docs.python.org/library/datetime.html

An alternate example of calculating the time interval between dates can be found at the following answer:

  • https://stackoverflow.com/questions/896839/how-can-i-calculate-difference-between-two-dates-in-python

The above is the detailed content of How Can I Calculate the Number of Days Between Two Dates in Python?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn